@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 2.28 kB
JavaScript
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
import * as React from 'react';
import AntdIcon from '@ant-design/icons';
import { ConfigProvider } from 'antd';
import classnames from 'classnames';
import { eraseDefaultProps } from "../utils";
import { jsx as _jsx } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_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"
};
/** */
export const GeminiColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gemini-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
GeminiColorful.displayName = 'GeminiColorful';