@wener/console
Version:
Base console UI toolkit
63 lines (62 loc) • 3.99 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 SvgFinanceIcon = function(props) {
return /*#__PURE__*/ React.createElement("svg", _object_spread({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
className: "FinanceIcon_svg__icon",
viewBox: "0 0 1056 1024"
}, props), /*#__PURE__*/ React.createElement("path", {
d: "M701.121 1020.253H36.265A36.265 36.265 0 0 1 0 983.988V36.265A36.265 36.265 0 0 1 36.265 0H701.12a36.265 36.265 0 0 1 36.265 36.265v947.723a36.265 36.265 0 0 1-36.265 36.265zM72.53 947.723h592.327V72.53H72.53z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M430.053 356.798H276.314a12.088 12.088 0 0 1 0-24.176h153.74a12.088 12.088 0 0 1 0 24.176zm0 68.565H276.314a12.088 12.088 0 0 1 0-24.176h153.74a12.088 12.088 0 0 1 0 24.176z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M357.064 502.873a12.09 12.09 0 0 1-12.088-12.088V344.71a12.088 12.088 0 0 1 24.177 0v146.075a12.09 12.09 0 0 1-12.089 12.088"
}), /*#__PURE__*/ React.createElement("path", {
d: "M351.528 347.95a12.1 12.1 0 0 1-8.559-3.53l-74.101-74.126a12.088 12.088 0 0 1 17.093-17.092l74.101 74.1a12.088 12.088 0 0 1-8.558 20.648z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M362.649 349.062a12.088 12.088 0 0 1-8.558-20.647l74.1-74.101a12.088 12.088 0 0 1 17.094 17.093l-74.102 74.1a12.1 12.1 0 0 1-8.534 3.555"
}), /*#__PURE__*/ React.createElement("path", {
d: "M149.895 350.754a24.177 24.177 0 0 1-23.766-28.794 234.706 234.706 0 0 1 460.25-2.224 24.177 24.177 0 1 1-47.362 9.67 186.377 186.377 0 0 0-365.405 1.765 24.18 24.18 0 0 1-23.717 19.583"
}), /*#__PURE__*/ React.createElement("path", {
d: "M150.33 351.77a24.177 24.177 0 0 1-9.67-46.395l52.85-22.726a24.177 24.177 0 0 1 19.099 44.412l-52.85 22.726a24.2 24.2 0 0 1-9.429 1.983m208.79 254.58a235.38 235.38 0 0 1-229.896-187.394 24.177 24.177 0 1 1 47.362-9.67 186.377 186.377 0 0 0 365.405-1.765 24.177 24.177 0 0 1 47.459 9.235A234.95 234.95 0 0 1 359.12 606.35"
}), /*#__PURE__*/ React.createElement("path", {
d: "M512.544 458.026a24.177 24.177 0 0 1-9.67-46.395l52.85-22.726a24.177 24.177 0 1 1 19.099 44.412l-52.85 22.726a24.2 24.2 0 0 1-9.429 1.983m-169.236 279.36H169.236a24.177 24.177 0 0 1 0-48.353h174.072a24.177 24.177 0 0 1 0 48.353M546.39 870.358H169.236a24.177 24.177 0 0 1 0-48.354h377.155a24.177 24.177 0 0 1 0 48.354zM865.522 227.26H817.17v-57.685a119.674 119.674 0 0 1 239.349 0v55.606h-48.354v-55.606a71.321 71.321 0 0 0-142.642 0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M1056.518 817.17H817.169V222.424h239.349zm-190.996-48.354h142.642V270.778H865.522z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M936.674 1024 817.266 817.17l41.874-24.177 77.534 134.3 77.534-134.3 41.874 24.176zm-75.987-724.21h149.895v48.353H860.687z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M913.876 336.055h48.353V681.78h-48.353z"
}));
};
var Memo = /*#__PURE__*/ memo(SvgFinanceIcon);
export default Memo;