UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

9 lines (8 loc) 218 B
import { FC } from '@dineug/r-html'; export type SwitchProps = { size?: '1' | '2' | '3'; value: boolean; onChange: (value: boolean) => void; }; declare const Switch: FC<SwitchProps>; export default Switch;