UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

10 lines (9 loc) 380 B
import { ICheckboxStyles } from './Checkbox.types'; export interface ICheckboxClassNames { root: string; label: string; checkbox: string; checkmark: string; text: string; } export declare const getClassNames: (styles: ICheckboxStyles, disabled: boolean, isChecked: boolean, isReversed: boolean, className?: string | undefined) => ICheckboxClassNames;