mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 12:05:28 +00:00
16 lines
273 B
Plaintext
16 lines
273 B
Plaintext
---
|
|
interface Props {
|
|
class?: string;
|
|
}
|
|
|
|
const { class: className, ...props } = Astro.props;
|
|
---
|
|
|
|
<hr
|
|
class:list={[
|
|
'border-solid border-black/[0.1] mbe-14 mbs-14 border-be-1 border-bs-0 border-ie-0 border-is-0 dark:border-white/[0.1]',
|
|
className,
|
|
]}
|
|
{...props}
|
|
/>
|