UNPKG

@skbkontur/ui-kit

Version:

12 lines (11 loc) 369 B
export interface CheckboxStateStyles { color?: string; background?: string; 'box-shadow'?: string; border?: string; } export declare type CheckboxType = 'checked' | 'unchecked'; export declare type CheckboxState = 'default' | 'hover' | 'active' | 'focus' | 'disabled'; export declare const getCheckboxTheme: (base?: any) => { [key: string]: any; };