@ant-design/web3-icons
Version:
A collection of Web3 icons.
60 lines (59 loc) • 7 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GtcCircleColorful = 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)("circle", {
cx: "16.2",
cy: "16.2",
r: "15.2",
fill: "none",
stroke: "#0e0333",
strokeWidth: "2"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M19.9 13.9c.6.8.9 1.9.9 2.9s-.3 2-.9 2.8l1.2.9c.8-1.1 1.2-2.4 1.2-3.8s-.5-2.8-1.3-4l-.7.6-.4.6z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#02e2ac"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M22.2 21.4 18 18.2c.3-.4.5-.9.5-1.4 0-.5-.1-1-.4-1.4l2-1.8 2.1-2c.1-.1.1-.4 0-.5l-.2-.2c-1.5-1.5-3.5-2.4-5.6-2.5V7c0-.1-.1-.1-.1-.2s-.1-.1-.2-.1-.1-.1-.2-.1-.2 0-.2.1c-.1 0-.1.1-.2.1-.1.1-.1.2-.2.2v1.4c-.5.1-1 .1-1.5.3V7c0-.1-.1-.1-.1-.2-.1-.1-.1-.1-.2-.1s-.1-.1-.2-.1-.2 0-.2.1c-.1 0-.1.1-.2.1-.1.1-.1.2-.1.2v2.1c-1.7.8-3.1 2.1-4 3.8-.9 1.7-1.1 3.6-.8 5.5.4 1.9 1.4 3.5 2.8 4.7 1.4 1.2 3.3 1.9 5.2 1.9h6.1c.2 0 .3-.2.3-.3v-3.1l-.2-.2zm-6.1 2.2c-1.5 0-3-.5-4.1-1.4-1.2-.9-2-2.2-2.4-3.7-.4-1.5-.3-3 .3-4.4.6-1.4 1.6-2.5 2.9-3.3V13.2c0 .1.1.1.1.2.1.1.1.1.2.1s.1.1.2.1.2 0 .2-.1c.1 0 .1-.1.2-.1.1-.1.1-.1.1-.2v-3c.8-.3 1.5-.4 2.3-.4 1.5 0 2.9.5 4.1 1.4.1.1.1.2 0 .3l-3.2 3c-.3-.1-.6-.2-.9-.2-.3 0-.7.1-1 .2-.3.1-.6.4-.8.6-.2.3-.4.6-.5.9-.1.3-.1.7-.1 1 .1.4.2.7.4 1 .2.3.4.5.7.7.3.2.6.3 1 .4.3.1.7 0 1-.1l4.1 3.1.1.1v1.1c0 .1-.1.2-.2.2l-4.7.1zm1-6.8c0 .2-.1.4-.2.5-.1.2-.3.3-.4.4-.2.1-.4.1-.6.1-.2 0-.4-.1-.5-.3-.1-.1-.2-.3-.3-.5 0-.2 0-.4.1-.6.1-.2.2-.3.4-.4.2-.1.3-.2.5-.2.3 0 .5.1.7.3.2.1.3.4.3.7z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#02e2ac"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32.4 32.4",
xmlSpace: "preserve",
enableBackground: "new 0 0 32.4 32.4"
};
/** */
const GtcCircleColorful = exports.GtcCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gtc-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
GtcCircleColorful.displayName = 'GtcCircleColorful';