UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 248 B
import { SwitchProps } from 'antd'; import { FC } from 'react'; import { SWITCH } from '../../Types'; export interface ISwitch { ctype: typeof SWITCH; props: SwitchProps; } declare const Switch: FC<ISwitch>; export default Switch;