@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 2.52 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: "9",
cy: "9",
r: "9",
fill: "#22996e"
}), /*#__PURE__*/_jsx("path", {
d: "M9 13H4.1c-.7 0-1.1-.7-.7-1.3l2.8-4.4c.2-.3.5-.5.9-.5h3.8c.4 0 .7.2.9.5l2.8 4.4c.4.6 0 1.3-.7 1.3H9zM9.5 3l1.2 1.8c.2.4 0 .9-.5.9H7.8c-.5 0-.7-.5-.5-.9L8.5 3c.3-.4.8-.4 1 0z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 18 18",
xmlSpace: "preserve",
enableBackground: "new 0 0 18 18"
};
/** */
export const FeiCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-fei-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FeiCircleColorful.displayName = 'FeiCircleColorful';