@ant-design/web3-icons
Version:
A collection of Web3 icons.
34 lines • 2.09 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: "M115.59 48.14a35.7 35.7 0 0 0-71.19-3.78 35.69 35.69 0 1 0 39.2 39.28 35.74 35.74 0 0 0 31.99-35.5Zm-35.7-27.89a27.93 27.93 0 0 1 27.6 23.92H52.3a27.93 27.93 0 0 1 27.59-23.92ZM52 76V52h24v24Zm-7.8-23.75V76H20.49A28 28 0 0 1 44.2 52.25Zm3.91 55.5a27.93 27.93 0 0 1-27.6-23.92H75.7a27.93 27.93 0 0 1-27.59 23.92Zm35.69-32V52h23.71A28 28 0 0 1 83.8 75.75Z"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 128 128"
};
/** */
export const GeminiFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gemini-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
GeminiFilled.displayName = 'GeminiFilled';