@ant-design/web3-icons
Version:
A collection of Web3 icons.
44 lines (43 loc) • 4.96 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ZrxCircleColorful = void 0;
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) {
return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
...props,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M94.5 85.5c3.2 4.3 6.5 8.7 9.8 13.1-6.6 7.8-14.8 12.8-24.7 14.9-11 2.3-21.4.6-31.5-5 9-6.7 17.8-13.3 26.7-19.9 2 1.9 3.9 3.8 5.8 5.6 2.1 2 1.3 2.1 4 .6 3.7-2.1 6.8-5 9.2-8.5.1-.2.3-.4.4-.6-.1 0 0 0 .3-.2zm-39.3 8.8c-2.5 1.9-4.8 3.6-7.1 5.4-1.7 1.3-3.4 2.5-5.1 3.8-.7.6-1.2.6-2-.1-7.6-6.8-12.4-15.2-14.2-25.2-1.8-10.1-.2-19.7 4.6-28.8.1-.2.3-.5.4-.7 0-.1.1-.1.3-.2 6.6 8.7 13.3 17.4 19.9 26.1-.2.3-.3.5-.5.7-2 2.1-4 4.2-6.1 6.2-.6.6-.7 1.1-.3 1.8 2.1 4 5 7.3 8.6 10 .5.3.9.6 1.5 1zm37.3-62.1c-3.2 2.3-6.4 4.6-9.6 6.8-5.5 3.9-11 7.9-16.4 11.8-.7.5-1.2.6-1.8-.1-1.8-1.9-3.7-3.6-5.5-5.5-.5-.5-1-.6-1.7-.3-4.3 2.2-7.7 5.3-10.5 9.2-.2.2-.4.5-.6.8-1.6-2.1-3.1-4-4.6-6-1.6-2.1-3.1-4.2-4.6-6.2-.5-.7-.6-1.2.1-1.9 7.7-8.5 17.2-13.5 28.6-14.7 9-1 17.6.8 25.6 5.1.3.2.6.3.9.5 0 .3 0 .4.1.5zm16.3 60c-2.1-2.7-4-5.2-5.9-7.7-4.4-5.8-8.8-11.7-13.3-17.5-.6-.8-.6-1.3.1-2 1.9-1.9 3.7-3.8 5.6-5.7.5-.5.7-1 .3-1.7-2.2-4.2-5.2-7.7-9.1-10.5-.3-.2-.6-.5-1-.7.3-.3.6-.5.8-.7 3.8-2.9 7.6-5.7 11.4-8.6.6-.5 1.1-.7 1.8 0 9.5 8.6 14.6 19.3 15.1 32.2.2 7.5-1.5 14.6-4.9 21.3-.3.4-.6.9-.9 1.6z",
fill: "#231815"
})
});
};
SVGComponent.defaultProps = {
viewBox: "25 25.1 89.8 90.7",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
const ZrxCircleColorful = exports.ZrxCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-zrx-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
ZrxCircleColorful.displayName = 'ZrxCircleColorful';