office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 412 B
TypeScript
import { ITheme } from '../../Styling';
import { IToggleStyles } from './Toggle.types';
export interface IToggleClassNames {
    root?: string;
    label?: string;
    container?: string;
    pill?: string;
    thumb?: string;
    text?: string;
}
export declare const getClassNames: (theme: ITheme, styles: IToggleStyles, className: string, disabled: boolean, checked: boolean) => IToggleClassNames;