simple-react-ui
Version:
a simple react component library written in TypeScript+ React.js
31 lines • 1.88 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
/**
* Reply Icon
*/
var Reply = /** @class */ (function (_super) {
__extends(Reply, _super);
function Reply() {
return _super !== null && _super.apply(this, arguments) || this;
}
Reply.prototype.render = function () {
return (React.createElement("svg", { viewBox: "0 0 3.4395832 4.2333334", width: "13", height: "16" },
React.createElement("g", { transform: "matrix(0.00364265,0,0,0.00432017,0,0.8)" },
React.createElement("path", { fill: this.props.fill, stroke: this.props.stroke, d: "M 482.6,535 C 459.7,535 377,535.7 377,535.7 V 723.5 L 109.2,430.1 377,136.3 v 189.2 c 0,0 87.4,-1 105.6,-0.3 247,7.7 418.5,288.9 419.6,420.4 C 826.7,648.7 628.4,535 482.6,535 Z M 447,255.6 V 49.3 c 1.2,-10.5 -1.6,-21 -9.6,-29 -13.8,-13.6 -36.3,-13.6 -50.1,0 L 37.9,403.5 c -7.4,7.3 -10.5,16.8 -10,26.6 -0.5,9.4 2.7,19.2 10,26.6 l 347.4,380.8 c 6.4,8 15.8,13.3 26.6,13.3 9.9,0 18.8,-4.2 25.1,-10.8 0.1,0 0.2,0 0.3,-0.3 8,-7.7 10.8,-18.5 9.6,-28.7 0,0 0.6,-194.1 0.6,-206 230.8,0 439.6,166.1 481,385 27.9,-64.3 43.6,-135 43.6,-209.5 C 972.2,490.6 737,255.6 447,255.6 Z" }))));
};
return Reply;
}(React.Component));
exports.Reply = Reply;
exports.default = Reply;
//# sourceMappingURL=reply.js.map