Files
website-astro-stefanimhoff.de/src/components/Subheadline.astro
2026-01-20 13:16:24 +01:00

20 lines
340 B
Plaintext

---
export interface Props {
as?: keyof astroHTML.JSX.IntrinsicElements;
class?: string;
[key: string]: any;
}
const { as: Tag = 'h3', class: className, ...props } = Astro.props;
---
<Tag
class:list={[
'text-4 font-black tracking-tight mbe-8 [text-wrap:balance] dark:font-extrabold',
className,
]}
{...props}
>
<slot />
</Tag>