UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

15 lines (12 loc) 345 B
import { IStyle, ITheme } from '../../Styling'; export interface IFabricProps extends React.HTMLAttributes<HTMLDivElement> { componentRef?: () => void; theme?: ITheme; } export interface IFabricStyleProps extends IFabricProps { theme: ITheme; isFocusVisible: boolean; } export interface IFabricStyles { root: IStyle; }