-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathOverall.js
More file actions
39 lines (39 loc) · 2.2 KB
/
Overall.js
File metadata and controls
39 lines (39 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"use strict";
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");
var lodash_1 = require("lodash");
var Colors_1 = require("./Colors");
var Overall = /** @class */ (function (_super) {
__extends(Overall, _super);
function Overall() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.path1 = lodash_1.uniqueId('react-path-');
_this.mask1 = lodash_1.uniqueId('react-mask-');
return _this;
}
Overall.prototype.render = function () {
var _a = this, path1 = _a.path1, mask1 = _a.mask1;
return (React.createElement("g", { id: 'Clothing/Overall', transform: 'translate(0.000000, 170.000000)' },
React.createElement("defs", null,
React.createElement("path", { d: 'M94,29.6883435 L94,74 L170,74 L170,29.6883435 C179.362956,30.9893126 188.149952,34.0907916 196.00002,38.6318143 L196,110 L187,110 L77,110 L68,110 L68,38.6318027 C75.8500482,34.0907916 84.6370437,30.9893126 94,29.6883435 Z', id: path1 })),
React.createElement("mask", { id: mask1, fill: 'white' },
React.createElement("use", { xlinkHref: '#' + path1 })),
React.createElement("use", { id: 'Overall', fill: '#B7C1DB', fillRule: 'evenodd', xlinkHref: '#' + path1 }),
React.createElement(Colors_1.default, { maskID: mask1 }),
React.createElement("circle", { id: 'Button', fill: '#F4F4F4', fillRule: 'evenodd', cx: '81', cy: '83', r: '5' }),
React.createElement("circle", { id: 'Button', fill: '#F4F4F4', fillRule: 'evenodd', cx: '183', cy: '83', r: '5' })));
};
Overall.optionValue = 'Overall';
return Overall;
}(React.Component));
exports.default = Overall;