@atlaskit/editor-core
Version:
A package contains Atlassian editor core functionality
15 lines • 539 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { PureComponent } from 'react';
var Strike = (function (_super) {
tslib_1.__extends(Strike, _super);
function Strike() {
return _super !== null && _super.apply(this, arguments) || this;
}
Strike.prototype.render = function () {
return React.createElement("span", { style: { textDecoration: 'line-through' } }, this.props.children);
};
return Strike;
}(PureComponent));
export default Strike;
//# sourceMappingURL=strike.js.map