--- interface Props { id: string; label: string; abbr?: string; options: string[]; value?: string; title?: string; description?: string; } const { id, label, abbr, options, value = options[0], title = "", description = "", } = Astro.props; ---