UNPKG

acres-ui-cookie

Version:

Acres React component library

10 lines (9 loc) 236 B
import React from 'react'; import './Switch.scss'; interface SwitchProps { checked?: boolean; disabled?: boolean; handleChange: (e: boolean) => void; } export declare const Switch: React.FC<SwitchProps>; export {};