office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
28 lines (26 loc) • 1.26 kB
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
/* tslint:disable:no-unused-variable */
var React = require("react");
/* tslint:enable:no-unused-variable */
var index_1 = require("../../../../index");
require("./IconExample.scss");
var IconBasicExample = (function (_super) {
__extends(IconBasicExample, _super);
function IconBasicExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
IconBasicExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(index_1.Icon, { iconName: index_1.IconName.CompassNW, className: 'ms-IconExample' }),
React.createElement(index_1.Icon, { iconName: index_1.IconName.Dictionary, className: 'ms-IconExample' }),
React.createElement(index_1.Icon, { iconName: index_1.IconName.TrainSolid, className: 'ms-IconExample' })));
};
return IconBasicExample;
}(React.Component));
exports.IconBasicExample = IconBasicExample;
//# sourceMappingURL=Icon.Basic.Example.js.map