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