personal-website/src/components/PageTitle.astro

15 lines
266 B
Plaintext
Raw Normal View History

---
import type { HTMLAttributes } from 'astro/types';
export type Props = HTMLAttributes<'h1'>;
2024-04-30 11:47:08 +02:00
const { class: classes, ...props } = Astro.props;
---
<h1
2024-04-30 11:47:08 +02:00
class:list={['text-primary-800 font-bold text-2xl sm:text-4xl', classes]}
{...props}
>
<slot />
</h1>