@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 5.24 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: "512",
cy: "512",
r: "512",
fill: "currentColor"
}), /*#__PURE__*/_jsxs("g", {
fill: "#fff",
children: [/*#__PURE__*/_jsx("path", {
d: "M757.582 654.229c-51.998 0-99.996-52.079-124.795-84.127-24.8 32.048-72.798 84.127-124.797 84.127s-99.996-52.079-124.795-84.127C359.995 602.15 311.997 654.23 260 654.23c-11.2 0-20-8.813-20-20.03s8.8-20.031 20-20.031c41.598 0 92.797-66.5 107.195-89.734 4-5.61 10.4-9.616 16.8-9.616s13.6 3.204 16.8 9.616c14.399 23.233 65.597 89.734 107.195 89.734 41.6 0 92.797-66.5 107.197-89.734 4-5.61 10.4-9.616 16.8-9.616 7.2 0 13.6 3.204 16.799 9.616 14.4 23.233 65.598 89.734 107.196 89.734 11.2 0 20 8.813 20 20.03s-7.2 20.03-18.4 20.03"
}), /*#__PURE__*/_jsx("path", {
d: "M757.582 768c-51.998 0-99.996-52.078-124.795-84.126C607.987 715.922 559.99 768 507.99 768s-99.996-52.078-124.795-84.126C359.995 715.922 311.997 768 260 768c-11.2 0-20-8.813-20-20.03 0-11.216 8.8-20.03 20-20.03 41.598 0 92.797-66.5 107.195-89.735 4-5.61 10.4-9.615 16.8-9.615s13.6 3.205 16.8 9.615c14.399 23.235 65.597 89.734 107.195 89.734 41.6 0 92.797-66.499 107.197-89.734 4-5.61 10.4-9.615 16.8-9.615 7.2 0 13.6 3.205 16.799 9.615 14.4 23.235 65.598 89.734 107.196 89.734 11.2 0 20 8.815 20 20.03 0 11.218-7.2 20.031-18.4 20.031M273.598 562.891c-9.6 0-17.598-6.41-19.998-16.024-2.4-16.024-4-32.048-4-47.272 0-143.416 115.995-259.59 259.19-259.59 143.196-.802 259.192 116.174 259.192 259.59 0 16.024-1.6 31.248-4 46.47-1.6 11.218-12 18.428-23.2 16.025-11.198-1.602-18.398-12.018-15.998-23.236 2.4-12.819 3.2-26.44 3.2-39.259 0-120.982-98.397-219.531-219.194-219.531-120.795 0-219.192 97.747-219.192 219.531 0 13.621 1.6 27.242 4 40.061 1.6 11.218-4.8 21.632-16 23.235z"
})]
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const SuietCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-suiet-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SuietCircleFilled.displayName = 'SuietCircleFilled';