All checks were successful
Build and deploy website / build (push) Successful in 38s
18 lines
332 B
Plaintext
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>
|