@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 5.96 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
cx: "400",
cy: "400",
r: "400",
transform: "translate(112 112)",
fill: "#555"
}), /*#__PURE__*/_jsx("path", {
d: "M653.45 417.929c-10.053-5.745-22.977-5.745-34.466 0l-80.417 47.394-54.57 30.16-78.981 47.395c-10.053 5.745-22.977 5.745-34.465 0l-61.75-37.34c-10.052-5.746-17.232-17.235-17.232-30.161v-71.81c0-11.49 5.744-22.98 17.233-30.16L370.55 337.5c10.052-5.744 22.976-5.744 34.465 0l61.749 37.342c10.052 5.745 17.232 17.234 17.232 30.16v47.395l54.57-31.597v-48.83c0-11.49-5.745-22.98-17.233-30.16l-114.882-67.502c-10.053-5.745-22.977-5.745-34.465 0l-117.755 68.937C242.744 348.991 237 360.481 237 371.97v135.003c0 11.49 5.744 22.98 17.232 30.16l116.319 67.502c10.052 5.745 22.976 5.745 34.465 0l78.981-45.958 54.57-31.597 78.981-45.958c10.053-5.745 22.977-5.745 34.465 0l61.75 35.905c10.052 5.745 17.232 17.234 17.232 30.16v71.81c0 11.49-5.744 22.98-17.233 30.16l-60.313 35.905c-10.052 5.745-22.976 5.745-34.465 0l-61.749-35.905c-10.052-5.745-17.232-17.234-17.232-30.16v-45.958l-54.57 31.596v47.395c0 11.49 5.745 22.979 17.233 30.16l116.318 67.501c10.053 5.745 22.977 5.745 34.465 0l116.319-67.501C779.82 676.445 787 664.955 787 652.03V515.59c0-11.49-5.744-22.979-17.232-30.16L653.449 417.93Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const MaticCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-matic-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MaticCircleFilled.displayName = 'MaticCircleFilled';