Files
portfolio/src/components/SectionTitle.astro
Nathan Cummins 352a9c18f5
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 15m49s
Flesh out about a little more, still temporary
2025-08-22 16:42:08 +09:30

21 lines
454 B
Plaintext

---
interface Props {
Tag?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
lineColour?: string;
lineColourDark?: string;
class?: string;
}
const {
Tag = "h1",
lineColour = "border-primary",
lineColourDark = "dark:text-primary",
class: className
} = Astro.props;
---
<div class={className}>
<Tag class="font-header m-0 text-center text-3xl"><slot /></Tag>
<hr class={`mx-auto my-4 w-16 border-2 ${lineColour} ${lineColourDark}`} />
</div>