--- export interface Props { checked?: boolean; name?: string; id: string; } const { checked = false, name = 'toggle', id} = Astro.props; ---