@ant-design/web3-icons
Version:
A collection of Web3 icons.
57 lines (56 loc) • 5.65 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.XyoColorful = 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.jsxs)("g", {
fill: "#8c91c7",
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M289 0 95.8.9 0 168.7l97.4 166.9 193.2-.9 95.8-167.8zm-10.6 313.8-169 .8-85.2-146L108 21.8l169-.8 85.2 146z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M307.1 133.6h-11.2l-20.7-108-117.1 37V52.3L273.9 16l9.3 4.3zM126.9 44l-7.3 4.6-19-29.3h10.3zM128.9 93h9.7v145h-9.7zM103.2 311.3l5.8 10.1 12.6-23.8-6.4-7.3zM278.9 321.1l-2.8.3-115.4-39.6 2.5-8.2 110.4 36.8 23-110.8h9.6zM365.4 172h-28l.6-9.9 27.6-.1zM161.2 257.3l119.7-68.6-6.4-7.7L157 249.5zM107.3 250.2 18.2 172l1.4-12 92.8-82.4 5.2 8-90.7 82.2 86.8 75.7zM277.9 155.2l-122-71.1 4.7-8.4 121.6 70.9z"
})]
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M306.2 130.3c-20.4 0-37 16.6-37 37s16.6 37 37 37 37-16.6 37-37-16.5-37-37-37zm0 64.4c-15.1 0-27.3-12.2-27.3-27.3s12.2-27.3 27.3-27.3 27.3 12.2 27.3 27.3-12.2 27.3-27.3 27.3z",
fill: "#f43b7b"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M135.6 38c-16.4 0-29.7 13.3-29.7 29.7s13.3 29.7 29.7 29.7 29.7-13.3 29.7-29.7C165.2 51.2 152 38 135.6 38zm0 50.6c-11.6 0-21-9.4-21-21s9.4-21 21-21 21 9.4 21 21-9.4 21-21 21z",
fill: "#5aa2da"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M133.5 233.6c-19 0-34.5 15.4-34.5 34.5s15.4 34.5 34.5 34.5c19 0 34.5-15.4 34.5-34.5s-15.4-34.5-34.5-34.5zm0 59c-13.6 0-24.5-11-24.5-24.5 0-13.6 11-24.5 24.5-24.5 13.6 0 24.5 11 24.5 24.5.1 13.5-10.9 24.5-24.5 24.5z",
fill: "#f66f4d"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 386.4 335.5",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
const XyoColorful = exports.XyoColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xyo-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
XyoColorful.displayName = 'XyoColorful';