@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 3.15 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";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("circle", {
cx: "164",
cy: "164",
r: "164",
fill: "red"
}), /*#__PURE__*/_jsx("path", {
d: "M246.5 85.4c1.6-1.6 1.6-4.1 0-5.7-1.6-1.6-4.1-1.6-5.7 0l-71.7 71.7V83.2c0-2.2-1.8-4-4-4s-4 1.8-4 4V152L114 104.9c-1.6-1.6-4.1-1.6-5.7 0-1.6 1.6-1.6 4.1 0 5.7l47.1 47.1H86.7c-2.2 0-4 1.8-4 4s1.8 4 4 4h68.2l-71.1 71.1c-1.6 1.6-1.6 4.1 0 5.7 1.6 1.6 4.1 1.6 5.7 0l71.7-71.7V239c0 2.2 1.8 4 4 4s4-1.8 4-4v-67.7l47.1 47.1c1.6 1.6 4.1 1.6 5.7 0 1.6-1.6 1.6-4.1 0-5.7l-47.1-47.1h68.8c2.2 0 4-1.8 4-4s-1.8-4-4-4h-69.4l72.2-72.2z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 328 328",
xmlSpace: "preserve",
enableBackground: "new 0 0 328 328"
};
/** */
export const GammaCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gamma-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
GammaCircleColorful.displayName = 'GammaCircleColorful';