UNPKG

stone-kit

Version:
19 lines (18 loc) 496 B
interface ICheckboxSelectProps { label?: string; checkboxes: { label: string; isSelected: boolean; disabled: boolean; setValue: () => void; }[]; addClassname?: string; isNeedClear?: boolean; labelSize?: 'medium' | 'large'; /** * @deprecated Используйте labelSize='large' вместо isPromotion={true} */ isPromotion?: boolean; } export declare const CheckboxSelect: React.FC<ICheckboxSelectProps>; export {};