UNPKG

@easykit/design

Version:

Easy kit design components

16 lines (15 loc) 440 B
import { FC, ReactNode } from 'react'; export interface CheckboxGroupOptionProps { label: ReactNode; value: string; disabled?: boolean; } export interface CheckboxGroupProps { options?: CheckboxGroupOptionProps[]; value?: string[]; onChange?: (value: string[]) => void; itemClassName?: string; checkboxClassName?: string; className?: string; } export declare const CheckboxGroup: FC<CheckboxGroupProps>;