UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines (16 loc) 443 B
import { IStyle, ITheme } from '../../Styling'; export interface IBreadcrumbStyleProps { className?: string; theme: ITheme; } export interface IBreadcrumbStyles { root: IStyle; list: IStyle; listItem: IStyle; chevron: IStyle; overflow: IStyle; overflowButton: IStyle; itemLink: IStyle; item: IStyle; } export declare const getStyles: (props: IBreadcrumbStyleProps) => IBreadcrumbStyles;