mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
21 lines
379 B
Plaintext
21 lines
379 B
Plaintext
---
|
|
// Cspell:words astro keyof
|
|
export interface Props {
|
|
as?: keyof astroHTML.JSX.IntrinsicElements;
|
|
class?: string;
|
|
[key: string]: any;
|
|
}
|
|
|
|
const { as: Tag = 'h2', class: className, children, ...props } = Astro.props;
|
|
---
|
|
|
|
<Tag
|
|
class:list={[
|
|
'text-5 font-black tracking-tight mbe-10 [text-wrap:balance] dark:font-extrabold',
|
|
className,
|
|
]}
|
|
{...props}
|
|
>
|
|
<slot />
|
|
</Tag>
|