office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
31 lines (30 loc) • 1.28 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 __());
};
define(["require", "exports", 'react', '../../utilities/css', './Check.scss'], function (require, exports, React, css_1) {
"use strict";
var Check = (function (_super) {
__extends(Check, _super);
function Check() {
_super.apply(this, arguments);
}
Check.prototype.shouldComponentUpdate = function (newProps) {
return this.props.isChecked !== newProps.isChecked;
};
Check.prototype.render = function () {
var isChecked = this.props.isChecked;
return (React.createElement("div", {className: css_1.css('ms-Check', {
'is-checked': isChecked
})},
React.createElement("div", {className: 'ms-Icon ms-Check-background'}),
React.createElement("i", {className: 'ms-Check-check ms-Icon ms-Icon--CheckMark'})));
};
Check.defaultProps = {
isChecked: false
};
return Check;
}(React.Component));
exports.Check = Check;
});