@ant-design/web3-icons
Version:
A collection of Web3 icons.
44 lines (43 loc) • 5.91 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HotColorful = 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: "M30.73.93C12.93 2.33-.77 5.13 0 7.23c7.1 16.9 51 116.4 51.6 117s10.8 1.3 22.8 1.8c53.2 2 95.3 12.4 140.8 34.9 32.7 16.1 56.9 33.4 82.1 58.5 37.1 37 61.3 78.1 75.5 128.4 1.6 5.8 2.9 11 2.9 11.8 0 1.1-8.1 1.3-43.9 1.3-24.2 0-45 .4-46.3.9-1.9.7-6.9 11.5-27.7 59.2-14 32.1-25.6 59.1-25.8 60-.7 2.6 7.7 4.9 28.7 8 4.3.7 30.1 1.4 60.6 1.8l53.1.6-3.2 11c-35.8 121.4-146.9 206.3-283 216.5-7.7.5-17.8 1-22.5 1h-8.5L31 780.23c-22.5 51.5-26 60.3-24.5 60.8 6.8 2.5 22 3.4 57.2 3.4 45 0 66.9-2 104-9.6 151.5-31.1 277.4-127.5 334.4-256.3 11-24.8 23.9-65.6 26.2-82.7l.7-4.9h113.7l.4 2.2c8.2 40.2 17.1 67.3 32.5 99.3 46.3 96.4 133.1 175.1 240.6 218.3a517.15 517.15 0 0 0 205.5 36.9c29.4-.9 52.8-4.2 51.6-7.3-1-2.6-50.8-116.9-51.1-117.2s-10.6-.7-23.1-1.2c-35.1-1.4-61.5-5.5-91.3-14-45.9-13.2-91.3-37.1-126.1-66.3-43.8-36.9-75.5-82.8-92.3-133.7-1.9-5.8-3.8-11.9-4.1-13.7l-.7-3.2 42.8-.3c23.5-.2 43.5-.7 44.3-1.1 1.3-.7 52.5-116.8 52.5-119.1 0-1.5-12.9-5.3-24.6-7.2-8.6-1.4-19.5-1.8-63-2.1l-52.7-.5 2-7.1c29.2-103.4 118.8-185.5 234.3-214.6 25.5-6.4 50.3-9.7 82.5-11 19.2-.8 21.6-1.1 22.8-2.7.8-1.1 12.6-27.6 26.2-58.9 16.7-38.3 24.4-57.2 23.7-57.7-2.2-1.2-16.2-3.7-27.2-4.8-16-1.7-62.7-1.4-83.3.4-117.8 10.5-224 58-303.6 135.6-48.6 47.4-82.7 100.6-103.7 162-5.4 15.5-11.9 39.9-13.9 51.7l-1.2 7.3H530.73l-.4-2.3c-.3-1.2-1.4-6.9-2.6-12.7-16.5-82-63.1-161.7-128.9-220.4-74.9-66.9-168.3-108.8-271.1-121.53C96.83.23 57-1.07 30.73.93Z",
fill: "#007f88"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1175.48 847.82"
};
/** */
const HotColorful = exports.HotColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-hot-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
HotColorful.displayName = 'HotColorful';