@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 4.76 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: "50",
cy: "50",
r: "45.85",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M45.74 31.52a14.68 14.68 0 0 0-7.47 8.57 28.89 28.89 0 0 0-.76 17.21 17.24 17.24 0 0 0 4.79 8.62 13.06 13.06 0 0 0 6.32 3.51l-.41-38.78c-.93.35-1.74.53-2.47.87Z"
}), /*#__PURE__*/_jsx("path", {
d: "M50 0a50 50 0 1 0 50 50A50 50 0 0 0 50 0Zm20.9 64.75a6.3 6.3 0 0 1-1.27 1.92 22 22 0 0 1-13 6.82l-1.31.22c-.1 0-.2.09-.12.05-.68 2.41-1.16 4.76-2 7-1.55 4-4.14 7.2-8.32 8.8a8.48 8.48 0 0 1-10.4-3.22 7 7 0 0 1-1-3 3.3 3.3 0 0 1 2.34-3.45A3.57 3.57 0 0 1 40 85.15c-.23.37-.52.71-.78 1.06 2 1.5 4.32 1.39 5.77-.49a14.41 14.41 0 0 0 2-4 30.63 30.63 0 0 0 1.43-8.22 3.64 3.64 0 0 0-.76-.33C39 71.44 33.37 66.27 30.53 58a24.45 24.45 0 0 1 2-21.17A20.52 20.52 0 0 1 46.21 27l1.63-.36c.1 0 .18-.12.35-.23a23.46 23.46 0 0 1 2.31-8.88 14.12 14.12 0 0 1 8.31-7.7 8.42 8.42 0 0 1 9.61 3.06 7.85 7.85 0 0 1 1.21 3 3.31 3.31 0 0 1-2.08 3.61 3.53 3.53 0 0 1-4.1-.91 3.49 3.49 0 0 1-.38-4.18c.25-.42.55-.8.82-1.2-2.2-1.51-4.36-1.25-5.93.68a14.51 14.51 0 0 0-2.61 6.59c-.37 1.84-.54 3.72-.84 5.81l2.31.4a22.74 22.74 0 0 1 9.26 3.52 4.81 4.81 0 0 1 2.41 5 11.67 11.67 0 0 0 .22 3.12c.16 1.27-.07 1.94-.88 2.25a1.84 1.84 0 0 1-2.35-1.06c-.77-1.35-1.41-2.77-2.17-4.12a10.15 10.15 0 0 0-7-5c-.62-.1-1.24-.17-1.87-.21l.39 39.52a22.87 22.87 0 0 0 7.91-2.67c1.65-1 3.14-2.27 4.71-3.41a4.63 4.63 0 0 1 1.51-1 2.1 2.1 0 0 1 1.62.42 1.65 1.65 0 0 1 .32 1.7Z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 100 100"
};
/** */
export const CsCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-cs-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CsCircleColorful.displayName = 'CsCircleColorful';