17 lines
323 B
Vue
17 lines
323 B
Vue
<script setup>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h1 class="text-2xl/8 font-semibold text-zinc-950 sm:text-xl/8 dark:text-white">
|
|
<slot />
|
|
</h1>
|
|
<hr role="presentation" class="mt-6 w-full border-t border-zinc-950/10 dark:border-white/10">
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|