Optional
disabled?: booleanOptional
label?: stringName for the HTML data value in forms
Optional
onChange?: (value: string) => voidvalue
and onChange
are optional because we want to be able to use the control in an uncontrolled manner as well (for example, in forms)
Optional
required?: booleanA selection is required
Optional
value?: stringvalue
and onChange
are optional because we want to be able to use the control in an uncontrolled manner as well (for example, in forms)
Disable entire group of radio buttons.