@uifabric/experiments
Version:
Experimental React components for building experiences for Office 365.
13 lines (12 loc) • 448 B
TypeScript
/*!
* Copyright (C) Microsoft Corporation. All rights reserved.
*/
import { ISidebarStyles } from './Sidebar.types';
export interface ISidebarClassNames {
root?: string;
rootCollapsed?: string;
content?: string;
contentCollapsed?: string;
footer?: string;
}
export declare const getSidebarClassNames: (styles: ISidebarStyles, className?: string | undefined, collapsed?: boolean | undefined) => ISidebarClassNames;