Files
nosys_libs/lockbox/frontend/src/components/cards/CardTitle.vue
2026-01-25 13:55:46 +10:00

12 lines
212 B
Vue

<template>
<h3
class="font-semibold text-2xl leading-none tracking-tight"
:class="$attrs.class"
>
<slot></slot>
</h3>
</template>
<script setup>
defineOptions({ inheritAttrs: false })
</script>