|
<template>
|
|
<h4 :id="parseId(id)" class="text-xl font-semibold my-2" style="font-variant: small-caps;">
|
|
<slot />
|
|
</h4>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { parseId } from '#shared/general.utils';
|
|
const props = defineProps<{ id?: string }>()
|
|
</script>
|