@ant-design/web3-icons
Version:
A collection of Web3 icons.
54 lines (53 loc) • 4.57 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BalCircleColorful = 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: "M500 0c276.1 0 500 223.9 500 500s-223.9 500-500 500S0 776.1 0 500 223.9 0 500 0Z",
fill: "#1e1e1e",
fillRule: "evenodd"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M507.5 709C347.6 709 218 662.8 218 600.9c0-32.3 35.3-61.4 91.8-81.9 44.1 28.3 118.1 42.8 202 42.8 81.9 0 154.3-17.7 198.8-44.8 53.3 20.3 86.4 48.6 86.4 79.8 0 62-129.6 112.2-289.5 112.2Z",
fill: "#fff"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M509.2 547.9c-121.2 0-219.5-38-219.5-84.9 0-26 30.3-49.3 77.8-64.8 33.9 17.7 84.7 29 141.7 29s107.8-11.3 141.7-29c47.6 15.6 77.8 38.8 77.8 64.8.1 46.9-98.2 84.9-219.5 84.9Z",
fill: "#fff"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M508.4 413.1c-93.7 0-169.7-31.4-169.7-70s76-70 169.7-70 169.7 31.4 169.7 70-76 70-169.7 70Z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1000 1000"
};
/** */
const BalCircleColorful = exports.BalCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bal-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
BalCircleColorful.displayName = 'BalCircleColorful';