Files
ghostwriter/app/components/card-field.vue
2025-04-07 12:59:20 +03:00

14 lines
346 B
Vue

<template>
<div class="flex justify-between items-center gap-4">
<div>
<div class="font-semibold"><slot name="title" /></div>
<div class="text-slate-600 text-sm">
<slot name="description" />
</div>
</div>
<div class="text-nowrap flex items-end">
<slot name="value" />
</div>
</div>
</template>