-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathShirtVNeck.js
More file actions
37 lines (37 loc) · 2.27 KB
/
ShirtVNeck.js
File metadata and controls
37 lines (37 loc) · 2.27 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
"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 ShirtVNeck = /** @class */ (function (_super) {
__extends(ShirtVNeck, _super);
function ShirtVNeck() {
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;
}
ShirtVNeck.prototype.render = function () {
var _a = this, path1 = _a.path1, mask1 = _a.mask1;
return (React.createElement("g", { id: 'Clothing/Shirt-V-Neck', transform: 'translate(0.000000, 170.000000)' },
React.createElement("defs", null,
React.createElement("path", { d: 'M171.319631,29.9364358 C205.706337,35.3665707 232,65.13854 232,101.051724 L232,110 L32,110 L32,101.051724 C32,65.1380521 58.2943778,35.3657617 92.6817711,29.9362145 C93.5835973,35.0053598 96.116393,39.8238432 100.236125,43.5389794 L100.236125,43.5389794 L129.321203,69.7676333 C130.843316,71.1402598 133.156684,71.1402598 134.678797,69.7676333 L134.678797,69.7676333 L163.763875,43.5389794 C164.189462,43.1551884 164.601167,42.7562772 164.998197,42.3430127 C168.414164,38.7873666 170.517305,34.4520434 171.319628,29.9364354 Z', id: path1 })),
React.createElement("mask", { id: mask1, fill: 'white' },
React.createElement("use", { xlinkHref: '#' + path1 })),
React.createElement("use", { id: 'Clothes', fill: '#E6E6E6', fillRule: 'evenodd', xlinkHref: '#' + path1 }),
React.createElement(Colors_1.default, { maskID: mask1 })));
};
ShirtVNeck.optionValue = 'ShirtVNeck';
return ShirtVNeck;
}(React.Component));
exports.default = ShirtVNeck;