21 lines
416 B
Vue
21 lines
416 B
Vue
<template>
|
|
<div class="border rounded-lg p-3 space-y-2">
|
|
<div class="text-ink-gray-5">
|
|
{{ __(title) }}
|
|
</div>
|
|
<div class="flex items-center space-x-2">
|
|
<slot name="prefix" />
|
|
<div class="font-semibold text-2xl">
|
|
{{ value }}
|
|
</div>
|
|
<slot name="suffix" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
title: string
|
|
value: number | string
|
|
}>()
|
|
</script>
|