UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

19 lines 913 B
import * as tslib_1 from "tslib"; import * as React from 'react'; import { Icon } from 'office-ui-fabric-react/lib/Icon'; import './IconExample.scss'; var IconBasicExample = /** @class */ (function (_super) { tslib_1.__extends(IconBasicExample, _super); function IconBasicExample() { return _super !== null && _super.apply(this, arguments) || this; } IconBasicExample.prototype.render = function () { return (React.createElement("div", null, React.createElement(Icon, { iconName: 'CompassNW', className: 'ms-IconExample' }), React.createElement(Icon, { iconName: 'Dictionary', className: 'ms-IconExample' }), React.createElement(Icon, { iconName: 'TrainSolid', className: 'ms-IconExample' }))); }; return IconBasicExample; }(React.Component)); export { IconBasicExample }; //# sourceMappingURL=Icon.Basic.Example.js.map