martials.no/src/components/header/HamburgerMenuButton.astro
Martin Berg Alstad dc4d564059
All checks were successful
Build and deploy website / build (push) Successful in 38s
Breadcrumbs with navigation for mobile
2025-03-16 21:32:11 +01:00

18 lines
332 B
Plaintext

---
import PajamasIcon from "@/components/icons/PajamasIcon.astro"
interface Props {
for: string
}
const { for: forId } = Astro.props
---
<label for={forId} aria-label="open sidebar" class="btn btn-square btn-ghost">
<PajamasIcon
name="pajamas:hamburger"
class="w-6 h-6"
aria-label="Hamburger menu"
/>
</label>