Files
website-astro-stefanimhoff.de/src/components/Title.astro
2024-09-11 17:02:02 +02:00

22 lines
370 B
Plaintext

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