@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 3.19 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",
cy: "16",
r: "16",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#0093dd"
}), /*#__PURE__*/_jsx("path", {
d: "m13.5 16 5.2 5.3L22 18c.6-.6 1.5-.6 2 0 .6.6.6 1.6 0 2.2l-4.3 4.4c-.6.6-1.5.6-2.1 0l-6.2-6.4V22c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5V10c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5v3.8l6.2-6.4c.6-.6 1.5-.6 2.1 0l4.3 4.4c.6.6.6 1.6 0 2.2-.6.6-1.5.6-2 0l-3.3-3.4-5.2 5.4zm5.2-1.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32",
xmlSpace: "preserve",
enableBackground: "new 0 0 32 32"
};
/** */
export const KcsCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-kcs-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
KcsCircleColorful.displayName = 'KcsCircleColorful';