import RadioButton from "../RadioButton"; import type { RadioGroupViewProps } from "./RadioGroup.types"; export function RadioGroupView({ groupId, value, mode, state, disabled, options, className, ariaLabel, onOptionChange, }: RadioGroupViewProps) { return (
{options.map((option) => { const isSelected = value === option.value; return ( { if (checked) { onOptionChange(option.value); } }} /> ); })}
); }