mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
19 lines
408 B
Vue
19 lines
408 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
title: string;
|
|
value: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="rounded-lg bg-card-background border-card-border border px-3.5 py-2.5">
|
|
<dt class="font-bold text-sm text-muted">{{ title }}</dt>
|
|
<dd class="text-2xl text-white pt-1 font-bold">
|
|
{{ value }}
|
|
</dd>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|