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