--- interface Props { id: string; label: string; checked?: boolean; title?: string; } const { id, label, checked = false, title = "" } = Astro.props; ---