@ant-design/web3-icons
Version:
A collection of Web3 icons.
44 lines (43 loc) • 3.45 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GeminiColorful = 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: "M211.74 0c-57 0-105.39 43.84-111.49 100.25C43.84 106.35 0 154.76 0 211.74A112.34 112.34 0 0 0 112.26 324c57 0 105.58-43.84 111.49-100.25C280.16 217.65 324 169.24 324 112.26A112.34 112.34 0 0 0 211.74 0zm86 124.84A87.35 87.35 0 0 1 224.51 198v-73.16zM26.3 199.16a87.35 87.35 0 0 1 73.19-73.37V199H26.3zm171.91 25.35a86.9 86.9 0 0 1-171.91 0zm.95-99.67V199h-74.32v-74.16zm98.54-25.35H125.79a86.9 86.9 0 0 1 171.91 0z",
fill: "#00dcfa"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 324 324",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
const GeminiColorful = exports.GeminiColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gemini-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
GeminiColorful.displayName = 'GeminiColorful';