@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 2.06 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("path", {
d: "M49.45 98.91a49.45 49.45 0 1 1 49.46-49.46 49.45 49.45 0 0 1-49.46 49.46Zm0-3.86a45.59 45.59 0 1 0-45.59-45.6A45.6 45.6 0 0 0 49.45 95Z"
}), /*#__PURE__*/_jsx("circle", {
cx: "49.55",
cy: "49.55",
r: "4.25"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 98.91 98.91"
};
/** */
export const CndCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-cnd-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CndCircleColorful.displayName = 'CndCircleColorful';