2025-02-15 23:00:38 +01:00
|
|
|
---
|
|
|
|
import PajamasIcon from "@/components/icons/PajamasIcon.astro"
|
|
|
|
|
|
|
|
interface Props {
|
2025-03-16 21:32:11 +01:00
|
|
|
for: string
|
2025-02-15 23:00:38 +01:00
|
|
|
}
|
|
|
|
|
2025-03-16 21:32:11 +01:00
|
|
|
const { for: forId } = Astro.props
|
2025-02-15 23:00:38 +01:00
|
|
|
---
|
|
|
|
|
2025-03-16 21:32:11 +01:00
|
|
|
<label for={forId} aria-label="open sidebar" class="btn btn-square btn-ghost">
|
2025-02-15 23:00:38 +01:00
|
|
|
<PajamasIcon
|
|
|
|
name="pajamas:hamburger"
|
|
|
|
class="w-6 h-6"
|
|
|
|
aria-label="Hamburger menu"
|
|
|
|
/>
|
|
|
|
</label>
|