--- import { cn } from '../lib/cn' import type { HTMLAttributes } from 'astro/types' type Props = HTMLAttributes<'div'> & { name: string options: { value: HTMLAttributes<'input'>['value'] label: string }[] selectedValue?: string | null } const { name, options, selectedValue, class: className, ...rest } = Astro.props ---
{ options.map((option) => ( )) }