mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
15 lines
202 B
Plaintext
15 lines
202 B
Plaintext
---
|
|
|
|
import H2 from './H2.astro';
|
|
|
|
const { class: className, ...props } = Astro.props;
|
|
---
|
|
|
|
<H2
|
|
as="h2"
|
|
class:list={["[&+.contents>h3]:mt-8 [&+h3]:mt-8", className]}
|
|
{...props}
|
|
>
|
|
<slot />
|
|
</H2>
|