@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 4.17 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: "M62.3 0C27.9 0 0 27.9 0 62.3s27.9 62.3 62.3 62.3 62.3-27.9 62.3-62.3C124.7 27.9 96.8 0 62.3 0zm-2.8 93c-3.4 2.4-7.5 3.8-11.6 3.8-7.2 0-13.8-3.9-18.8-11.1-4.5-6.9-7-14.9-7.2-23.1 0-.3.2-.6.5-.7l4.9-2.2c.4-.2.8 0 1 .4 0 .1.1.2.1.3 0 8.2 2.2 15.9 6.1 21.6 3.7 5.4 8.5 8.3 13.5 8.3 2.7 0 5.4-.8 7.6-2.3.3-.2.8-.1 1 .2 1 1.3 2 2.5 3.1 3.7.1.3.1.8-.2 1.1zm36.1-7.3C90.7 92.8 84 96.8 76.8 96.8S63 92.8 58 85.7c-4.7-6.8-7.3-15.8-7.3-25.3 0-8.8 5.1-15.7 11.5-15.7s11.5 6.9 11.5 15.7c.1 7.7-1.7 15.2-5.3 22-.2.4-.7.5-1 .3-.1 0-.1-.1-.2-.2-.6-.7-1.2-1.4-1.7-2.1-.6-.9-1.1-1.7-1.6-2.7-.1-.2-.1-.5 0-.7 2.3-5.3 3.4-11 3.4-16.7 0-4.3-2.2-9.2-5.1-9.2s-5.1 4.9-5.1 9.2c0 8.2 2.2 15.9 6.1 21.6 3.7 5.4 8.5 8.3 13.5 8.3s9.8-3 13.5-8.3c3.9-5.7 6.1-13.4 6.1-21.6s-2.2-15.9-6.1-21.6c-1.1-1.7-2.5-3.2-4-4.5-.3-.3-.3-.8-.1-1.1.1-.1.2-.2.3-.2l4.9-2.2c.3-.1.6-.1.8.2 1.3 1.3 2.4 2.7 3.4 4.1 4.7 6.8 7.3 15.8 7.3 25.3s-2.5 18.6-7.2 25.4z",
fill: "#a566ff"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 124.7 124.7",
xmlSpace: "preserve",
enableBackground: "new 0 0 124.7 124.7"
};
/** */
export const EwtCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ewt-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EwtCircleColorful.displayName = 'EwtCircleColorful';