<template>
<h4 :id="id" class="text-lg font-semibold my-2 ms-4">
<slot />
</h4>
</template>
<script setup lang="ts">
const props = defineProps<{ id?: string }>()
</script>