UNPKG

kedao

Version:

Rich Text Editor Based On Draft.js

10 lines (9 loc) 204 B
import { FC } from 'react'; interface SwitchProps { active: boolean; onClick: () => any; className?: string; label: string; } declare const Switch: FC<SwitchProps>; export default Switch;