UNPKG

@boxyhq/react-ui

Version:

React UI components from BoxyHQ

10 lines (9 loc) 262 B
export interface CheckboxProps { label: string; name: string; id?: string; checked: boolean; handleChange: (e: any) => void; } declare function Checkbox(props: CheckboxProps): import("react/jsx-runtime").JSX.Element; export default Checkbox;