@wener/console
Version:
Base console UI toolkit
45 lines (44 loc) • 2.46 kB
JavaScript
function _define_property(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
function _object_spread(target) {
for(var i = 1; i < arguments.length; i++){
var source = arguments[i] != null ? arguments[i] : {};
var ownKeys = Object.keys(source);
if (typeof Object.getOwnPropertySymbols === "function") {
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
}));
}
ownKeys.forEach(function(key) {
_define_property(target, key, source[key]);
});
}
return target;
}
import * as React from 'react';
import { memo } from 'react';
var SvgTicketIcon = function(props) {
return /*#__PURE__*/ React.createElement("svg", _object_spread({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
className: "TicketIcon_svg__icon",
viewBox: "0 0 1024 1024"
}, props), /*#__PURE__*/ React.createElement("path", {
d: "M224.26 763.863h-51.022m163.522 0h-14.965m65.986 0h-14.963m0 0H336.76m314.422 0H636.22m65.986 0H687.24m163.522 0H799.74m-112.5 0h-36.058m203.366-504.267H169.452a36.06 36.06 0 0 0-36.058 36.058v432.692a36.06 36.06 0 0 0 36.058 36.058h54.087l48.858-48.859 49.398 48.86h65.986l48.859-48.86 48.678 48.86h54.086l48.858-48.86 47.957 48.86h65.986l48.857-48.86 49.4 48.86h54.086a36.06 36.06 0 0 0 36.058-36.059V295.654a36.06 36.06 0 0 0-36.058-36.058m0 450.722a18.03 18.03 0 0 1-18.029 18.028h-21.814l-63.823-63.822-63.642 63.822h-36.058l-63.822-63.822-63.641 63.822h-23.438l-63.822-63.822-63.641 63.822H336.76l-63.822-63.822-63.643 63.822h-21.814a18.03 18.03 0 0 1-18.029-18.028V313.682a18.03 18.03 0 0 1 18.029-18.028h649.038a18.03 18.03 0 0 1 18.029 18.028z"
}), /*#__PURE__*/ React.createElement("path", {
d: "m264.464 372.637 57.512 106.55 57.512-106.55h32.091l-66.166 116.467h48.317v16.226h-57.51v31.91h57.511v16.227H336.22v51.021h-28.666v-51.021H250.4V537.24h57.152v-31.73H250.4v-16.226h47.957l-66.165-116.647zm245.553 36.058H762.42v36.058H510.017zm0 126.201H762.42v36.058H510.017z"
}));
};
var Memo = /*#__PURE__*/ memo(SvgTicketIcon);
export default Memo;