@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines (45 loc) • 5.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HaiColorful = 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: "M797.1 0v170.8h-56.9V0h-56.9v170.8h-56.9V0h-56.9v170.8H284.7V0h-56.9V227.7h569.3v56.9H170.8V0h-56.9v284.7h-57V0H0v626.3h56.9V455.5h56.9v170.8h56.9V455.5h56.9v170.8h56.9V455.5h284.7v170.8h56.9V398.6H56.9v-56.9H683.1v284.7H740V341.6h56.9v284.7H854V0h-56.9zM97.6 764.5V797H24.4v-32.5H0V854h24.4v-32.5h73.2V854H122v-89.5H97.6zM561.2 821.5h-24.4V854h24.4v-32.5zM561.2 764.5h-24.4V797h-73.2v-32.5h-24.4V854h24.4v-32.5h73.2l24.4-24.4v-32.6zM252.1 764.5H146.4V854h24.4v-32.5H244V854h24.4v-89.5h-16.3zm-81.3 32.6V789H244v8.1h-73.2zM414.8 788.9v-24.4H292.8V854h122v-24.4h-97.6v-40.7h97.6zM707.6 788.9v-24.4H585.6V854h122v-24.4H610v-8.1h97.6v-24.4H610V789h97.6zM829.6 764.5v56.9l-73.2-56.9H732V854h24.4v-56.9l73.2 56.9H854v-89.5h-24.4z",
fill: "#3ef2d0"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 854 854",
xmlSpace: "preserve",
enableBackground: "new 0 0 854 854"
};
/** */
const HaiColorful = exports.HaiColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-hai-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
HaiColorful.displayName = 'HaiColorful';