mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 12:05:28 +00:00
20 lines
340 B
Plaintext
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>
|