office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (11 loc) • 347 B
text/typescript
import { ITheme } from '../../Styling';
export interface IVerticalDividerProps {
/**
* Optional function to generate the class names for the divider for custom styling
*/
getClassNames?: (theme: ITheme) => IVerticalDividerClassNames;
}
export interface IVerticalDividerClassNames {
wrapper: string;
divider: string;
}