--- export interface Props { label?: string; class?: string; } const { label = 'Toggle Menu', class: className = 'flex flex-col h-12 w-12 rounded justify-center items-center cursor-pointer group', } = Astro.props; ---