mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
19 lines
444 B
Vue
19 lines
444 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
title: string;
|
|
value: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="rounded-lg bg-card-background border-card-border shadow-card border px-3.5 py-2.5">
|
|
<dt class="font-semibold text-sm text-text-secondary">{{ title }}</dt>
|
|
<dd class="text-2xl text-text-primary pt-1 font-semibold">
|
|
{{ value }}
|
|
</dd>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|