UNPKG

@ecoba-vn/tender-feature

Version:
11 lines (10 loc) 395 B
import React from 'react'; declare type CheckboxProps = { checked: boolean; name: string; label?: string; color?: 'primary' | 'secondary' | 'default' | undefined; onChange?: (event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void; }; export default function Checkbox({ checked, name, label, color, onChange }: CheckboxProps): JSX.Element; export {};