UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

17 lines (16 loc) 704 B
/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import { IButtonStyles } from 'office-ui-fabric-react'; import { ITheme } from 'office-ui-fabric-react'; import { ISidebarStyles } from './Sidebar.types'; export declare const sidebarFonts: { segoeUiSemibold: string; segoeUiSemilight: string; }; export declare enum SidebarColors { Dark = 0, Light = 1, } export declare const getSidebarStyles: (theme: ITheme, sidebarColors: SidebarColors, customStyles?: ISidebarStyles | undefined) => ISidebarStyles; export declare const getButtonColoredStyles: (theme: ITheme, sidebarColors: SidebarColors, customStyles?: IButtonStyles | undefined) => IButtonStyles;