UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

49 lines 2 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { VerticalDivider } from 'office-ui-fabric-react/lib/Divider'; import { mergeStyleSets } from 'office-ui-fabric-react/lib/Styling'; import { memoizeFunction } from 'office-ui-fabric-react/lib/Utilities'; var getExampleClassNames = memoizeFunction(function () { var exampleHeight = 40; return mergeStyleSets({ wrapper: { height: 40, backgroundColor: '#F4F4F4', padding: '0' }, text: { display: 'inline-block', padding: '0 8px', height: exampleHeight, lineHeight: exampleHeight, verticalAlign: 'top', margin: 'auto' } }); }); var VerticalDividerCustomExample = /** @class */ (function (_super) { tslib_1.__extends(VerticalDividerCustomExample, _super); function VerticalDividerCustomExample() { return _super !== null && _super.apply(this, arguments) || this; } VerticalDividerCustomExample.prototype.render = function () { var exampleClassNames = getExampleClassNames(); return (React.createElement("div", { className: exampleClassNames.wrapper }, React.createElement("p", { className: exampleClassNames.text }, " Some text before the divider. "), React.createElement(VerticalDivider, { styles: { wrapper: { height: 40, backgroundColor: '#F4F4F4', padding: 0 }, divider: { height: 28, backgroundColor: 'pink' } } }), React.createElement("p", { className: exampleClassNames.text }, "Some text after the divider. "))); }; return VerticalDividerCustomExample; }(React.Component)); export { VerticalDividerCustomExample }; //# sourceMappingURL=VerticalDivider.Custom.Example.js.map