@appbuckets/react-ui
Version:
Just Another React UI Framework
9 lines (8 loc) • 303 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import { RadioOptionProps } from './RadioOption.types';
declare type RadioOptionComponent = Creatable<
React.VoidFunctionComponent<RadioOptionProps>
>;
declare const RadioOption: RadioOptionComponent;
export default RadioOption;