UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 314 B
import { RadioButtonProps } from 'antd/es/radio/radioButton'; import { FC } from 'react'; import { RADIO_BUTTON } from '../../../Types'; export interface IRadioButton { ctype: typeof RADIO_BUTTON; props: RadioButtonProps; } declare const RadioButton: FC<IRadioButton>; export default RadioButton;