@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 2.83 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: "30",
cy: "30",
r: "30",
fill: "#3ceaaa"
}), /*#__PURE__*/_jsx("path", {
d: "M22.6 15.9c1.8-1.8 4.7-1.8 6.5 0l4.9 4.8.8-.8c1.8-1.8 4.7-1.8 6.5 0l4.8 4.7c1.9 1.8 1.9 4.8 0 6.7l-13 12.8c-1.8 1.8-4.7 1.8-6.5 0l-13-12.8c-1.9-1.8-1.9-4.8 0-6.7l9-8.7zm8.2 8.1L26 19.3 17 28l4.8 4.7 9-8.7zm-5.6 12 4.8 4.7 4.8-4.7-4.8-4.7-4.8 4.7zm8.1-8 4.8 4.7L43 28l-4.8-4.7-4.9 4.7z",
fillRule: "evenodd",
clipRule: "evenodd",
fillOpacity: ".6"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 60 60",
xmlSpace: "preserve",
enableBackground: "new 0 0 60 60"
};
/** */
export const PerpCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-perp-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PerpCircleColorful.displayName = 'PerpCircleColorful';