Link Search Menu Expand Document (external link)

Home > @department-of-veterans-affairs/va-forms-system-core > RadioGroupProps

RadioGroupProps type

Signature:

export declare type RadioGroupProps = FieldProps<string> & {
    name: string;
    options: RadioItemProps[];
    onChange: (v: string) => void;
};

References: FieldProps, RadioItemProps