are-visual
Version:
A Component Library for React.
11 lines (10 loc) • 332 B
TypeScript
/// <reference types="react" />
import { RadioProps } from './Props';
import RadioGroup from './Group';
import './style/index.scss';
declare function Radio<T>(props: RadioProps<T>): JSX.Element;
declare namespace Radio {
var Group: typeof RadioGroup;
var defaultProps: RadioProps<boolean>;
}
export default Radio;