@ant-design/web3-icons
Version:
A collection of Web3 icons.
85 lines (84 loc) • 6.58 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HusdCircleColorful = void 0;
var _react = require("@inline-svg-unique-id/react");
var React = _interopRequireWildcard(require("react"));
var _icons = _interopRequireDefault(require("@ant-design/icons"));
var _antd = require("antd");
var _classnames = _interopRequireDefault(require("classnames"));
var _utils = require("../utils");
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
var SVGComponent = function SVGComponent(props) {
const _id2 = (0, _react.useUniqueInlineId)();
const _id = (0, _react.useUniqueInlineId)();
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
...props,
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m280.8 923.5 307.4-730.7 873.2 100.6 178.8 539.3-89.4 746c-128.5 137.9-210.5 206.8-245.9 206.8-35.4 0-303.6-48.9-804.7-146.7l-219.3-542.1-.1-173.2z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#f9f9f9"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("defs", {
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("filter", {
id: _id,
filterUnits: "userSpaceOnUse",
x: "0",
y: "0",
width: "2000",
height: "2000",
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("feColorMatrix", {
values: "1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"
})
})
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("mask", {
maskUnits: "userSpaceOnUse",
x: "0",
y: "0",
width: "2000",
height: "2000",
id: _id2,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M0 0h2000v2000H0V0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff",
filter: `url(#${_id})`
})
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
mask: `url(#${_id2})`,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M1419 1579.4h-212.9v-366.5c0-58.7-47.5-106.4-106.2-106.4H793.8c-117.5 0-212.8-95.3-212.8-212.8v-473h212.8v366.6c0 58.7 47.6 106.4 106.3 106.4h306c117.5.1 212.7 95.3 212.8 212.8l.1 472.9zm-617.8 0H588.3V1222c117.5 0 212.8 95.2 212.8 212.8l.1 144.6zm397.6-1158.8h212.8v357.6c-117.6 0-212.8-95.3-212.8-212.8V420.6zM1000 0C447.7 0 0 447.8 0 1000s447.7 1000 1000 1000 1000-447.7 1000-1000S1552.3 0 1000 0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#005ffa"
})
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 2000",
xmlSpace: "preserve",
enableBackground: "new 0 0 2000 2000"
};
/** */
const HusdCircleColorful = exports.HusdCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-husd-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
HusdCircleColorful.displayName = 'HusdCircleColorful';