@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
8 lines (7 loc) • 343 B
TypeScript
/// <reference types="react" />
import type { IPropsRadio } from './IRadio';
/**
* Use radio buttons to present each item in a list of options where merchants must make a single selection.
*/
declare const Radio: import("react").ForwardRefExoticComponent<IPropsRadio & import("react").RefAttributes<HTMLInputElement>>;
export default Radio;