office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
21 lines (20 loc) • 670 B
TypeScript
import { IStyle, ITheme } from '../../Styling';
import { IStyleFunctionOrObject } from '../../Utilities';
export interface IGroupSpacerProps {
/**
* Theme from Higher Order Component
*/
theme?: ITheme;
/**
* Style function to be passed in to override the themed or default styles
*/
styles?: IStyleFunctionOrObject<IGroupSpacerStyleProps, IGroupSpacerStyles>;
/** Count of spacer(s) */
count: number;
/** How much to indent */
indentWidth?: number;
}
export declare type IGroupSpacerStyleProps = Required<Pick<IGroupSpacerProps, 'theme'>>;
export interface IGroupSpacerStyles {
root: IStyle;
}