frontend/components/typography/headings/medium.vue

24 lines
519 B
Vue
Raw Normal View History

<script setup lang="ts">
import { Primitive, type PrimitiveProps } from "reka-ui";
import type { HTMLAttributes } from "vue";
import { cn } from "~/lib/utils";
interface Props extends PrimitiveProps {
class?: HTMLAttributes["class"];
}
const props = withDefaults(defineProps<Props>(), {
as: "h2",
});
</script>
<template>
<Primitive
:as="as"
:as-child="asChild"
:class="cn('text-3xl font-semibold tracking-tight', props.class)"
>
<slot />
</Primitive>
</template>