Radio
Use the Radio to let users select one option from a small group of mutually
exclusive choices. The choices are presented so users can compare all options at
once.
RadioProps
Signature:
export declare type RadioProps = <<, , >, | | | > & & & & & & & {
/**
* Handler that is called when the element's focus status changes.
* @deprecated Use onFocus/onBlur instead.
*/
onFocusChange?: (isFocused: ) => ;
};RadioGroupProps
Signature:
export declare type RadioGroupProps = <, (value: , event?: <>) => | , > & & & & & {
/**
* Internal: associates this control with a `_Form` rendered outside its
* React subtree via the native `form` attribute. Unstable.
* @internal
*/
_form?: ;
/**
* Internal: routes this control's native/Strato validation messages to the
* field outlet (default), the enclosing form's outlet, or both. Unstable.
* @internal
*/
_messageTarget?: | [];
};