@ant-design/web3-icons
Version:
A collection of Web3 icons.
52 lines (51 loc) • 6.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IovCircleColorful = 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.jsxs)("svg", {
...props,
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M84.5 166.5c45.3 0 82-36.7 82-82s-36.7-82-82-82-82 36.7-82 82 36.7 82 82 82z",
fill: "#fff"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M84.5 169c-16.7 0-33-5-46.9-14.2a84.69 84.69 0 0 1-31.1-37.9C0 101.4-1.6 84.4 1.6 68s11.3-31.4 23.1-43.3C36.6 12.9 51.6 4.9 68 1.6s33.4-1.6 48.8 4.8a84.69 84.69 0 0 1 37.9 31.1c9.3 14 14.3 30.3 14.3 47 0 22.4-8.9 43.9-24.8 59.7S106.9 169 84.5 169zm0-164C68.8 5 53.4 9.7 40.3 18.4 27.2 27.1 17 39.6 11 54.1 5 68.6 3.5 84.6 6.5 100c3.1 15.4 10.6 29.6 21.8 40.7A79.94 79.94 0 0 0 69 162.5c15.4 3.1 31.4 1.5 45.9-4.5s26.9-16.2 35.7-29.3c8.7-13.1 13.4-28.4 13.4-44.2 0-21.1-8.4-41.3-23.3-56.2A79.475 79.475 0 0 0 84.5 5z",
fill: "#d0d2d3"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m73 61.1 11.6-18.4 11.9 17.9c2.9-2.5 4.9-5.8 5.8-9.5.9-3.7.7-7.6-.7-11.1s-3.8-6.6-7-8.7c-3.2-2.1-6.9-3.2-10.7-3.1-3.8.1-7.5 1.3-10.5 3.6-3.1 2.3-5.3 5.4-6.5 9-1.2 3.6-1.3 7.5-.2 11.1 1.1 3.6 3.3 6.8 6.3 9.2zM69.5 109.1l-21.8-.3 9-19.5c-3.6-1.1-7.5-1.1-11.1 0-3.6 1.2-6.8 3.4-9.1 6.4-2.3 3-3.6 6.7-3.7 10.5-.1 3.8.9 7.5 3 10.7 2.1 3.2 5.1 5.6 8.6 7.1 3.5 1.4 7.4 1.7 11.1.9 3.7-.9 7-2.8 9.6-5.7 2.4-2.8 3.9-6.3 4.4-10.1zM99 109.4l21.8-.6-9.3-19.3c3.6-1.2 7.5-1.3 11.1-.2 3.6 1.1 6.8 3.3 9.2 6.3s3.7 6.6 3.9 10.4c.2 3.8-.8 7.5-2.8 10.8-2 3.2-5 5.7-8.5 7.2s-7.4 1.8-11.1 1c-3.7-.8-7.1-2.7-9.7-5.5-2.4-2.8-4.1-6.3-4.6-10.1z",
fill: "#5c67b0"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 169 169",
xmlSpace: "preserve",
enableBackground: "new 0 0 169 169"
};
/** */
const IovCircleColorful = exports.IovCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-iov-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
IovCircleColorful.displayName = 'IovCircleColorful';