@ant-design/web3-icons
Version:
A collection of Web3 icons.
52 lines • 5.85 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: "16.2",
cy: "16.2",
r: "15.2",
fill: "none",
stroke: "#0e0333",
strokeWidth: "2"
}), /*#__PURE__*/_jsx("path", {
d: "M19.9 13.9c.6.8.9 1.9.9 2.9s-.3 2-.9 2.8l1.2.9c.8-1.1 1.2-2.4 1.2-3.8s-.5-2.8-1.3-4l-.7.6-.4.6z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#02e2ac"
}), /*#__PURE__*/_jsx("path", {
d: "M22.2 21.4 18 18.2c.3-.4.5-.9.5-1.4 0-.5-.1-1-.4-1.4l2-1.8 2.1-2c.1-.1.1-.4 0-.5l-.2-.2c-1.5-1.5-3.5-2.4-5.6-2.5V7c0-.1-.1-.1-.1-.2s-.1-.1-.2-.1-.1-.1-.2-.1-.2 0-.2.1c-.1 0-.1.1-.2.1-.1.1-.1.2-.2.2v1.4c-.5.1-1 .1-1.5.3V7c0-.1-.1-.1-.1-.2-.1-.1-.1-.1-.2-.1s-.1-.1-.2-.1-.2 0-.2.1c-.1 0-.1.1-.2.1-.1.1-.1.2-.1.2v2.1c-1.7.8-3.1 2.1-4 3.8-.9 1.7-1.1 3.6-.8 5.5.4 1.9 1.4 3.5 2.8 4.7 1.4 1.2 3.3 1.9 5.2 1.9h6.1c.2 0 .3-.2.3-.3v-3.1l-.2-.2zm-6.1 2.2c-1.5 0-3-.5-4.1-1.4-1.2-.9-2-2.2-2.4-3.7-.4-1.5-.3-3 .3-4.4.6-1.4 1.6-2.5 2.9-3.3V13.2c0 .1.1.1.1.2.1.1.1.1.2.1s.1.1.2.1.2 0 .2-.1c.1 0 .1-.1.2-.1.1-.1.1-.1.1-.2v-3c.8-.3 1.5-.4 2.3-.4 1.5 0 2.9.5 4.1 1.4.1.1.1.2 0 .3l-3.2 3c-.3-.1-.6-.2-.9-.2-.3 0-.7.1-1 .2-.3.1-.6.4-.8.6-.2.3-.4.6-.5.9-.1.3-.1.7-.1 1 .1.4.2.7.4 1 .2.3.4.5.7.7.3.2.6.3 1 .4.3.1.7 0 1-.1l4.1 3.1.1.1v1.1c0 .1-.1.2-.2.2l-4.7.1zm1-6.8c0 .2-.1.4-.2.5-.1.2-.3.3-.4.4-.2.1-.4.1-.6.1-.2 0-.4-.1-.5-.3-.1-.1-.2-.3-.3-.5 0-.2 0-.4.1-.6.1-.2.2-.3.4-.4.2-.1.3-.2.5-.2.3 0 .5.1.7.3.2.1.3.4.3.7z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#02e2ac"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32.4 32.4",
xmlSpace: "preserve",
enableBackground: "new 0 0 32.4 32.4"
};
/** */
export const GtcCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-gtc-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
GtcCircleColorful.displayName = 'GtcCircleColorful';