office-ui-fabric-react
Version: 
Reusable React components for building experiences for Office 365.
12 lines (11 loc) • 355 B
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;
}