@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 416 B
TypeScript
/// <reference types="react" />
import { CheckboxProps } from "./checkbox";
import CheckboxGroup from "./checkbox-group";
export type { CheckboxProps } from "./checkbox";
export type { CheckboxGroupProps } from "./checkbox-group";
interface CheckboxInterface {
(props: CheckboxProps): JSX.Element;
Group: typeof CheckboxGroup;
}
declare const Checkbox: CheckboxInterface;
export default Checkbox;