UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

11 lines (10 loc) 412 B
import { ForwardRefExoticComponent } from 'react'; import Group, { RadioGroupProps } from './group'; import Radio, { RadioProps } from './radio'; import './styles/index.scss'; export interface RadioComponent extends ForwardRefExoticComponent<RadioProps> { Group: typeof Group; } declare const ExpandedRadio: RadioComponent; export { Radio, Group, RadioProps, RadioGroupProps }; export default ExpandedRadio;