UNPKG

cookie-test-app

Version:

testing

10 lines (9 loc) 252 B
import React from 'react'; import './Checkbox.scss'; interface CheckboxProps { disabled?: boolean | 'disabled'; handleChange: ([]: any[]) => void; label: string; } export declare const Checkbox: React.FC<CheckboxProps>; export {};