@ant-design/web3-icons
Version:
A collection of Web3 icons.
48 lines • 4.23 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", {
fill: "currentColor",
cx: "513",
cy: "512",
r: "512"
}), /*#__PURE__*/_jsx("path", {
fill: "none",
d: "M0 0h1024v1024H0z"
}), /*#__PURE__*/_jsx("path", {
d: "M576.95 535.212c-3.622.276-22.339 1.41-64.09 1.41-33.206 0-56.783-1.011-65.055-1.41-128.33-5.73-224.118-28.402-224.118-55.548s95.788-49.789 224.118-55.61v88.577c8.392.613 32.422 2.053 65.63 2.053 39.848 0 59.802-1.685 63.395-2.022v-88.547c128.059 5.791 223.635 28.464 223.635 55.549s-95.546 49.757-223.635 55.518l.12.03Zm.354-120.42v-79.128h178.561V215H269.708v120.664h178.531v79.097C303.128 421.52 194 450.669 194 485.599c0 34.93 109.128 64.048 254.239 70.839V810h129.035V556.346C722.054 549.586 831 520.468 831 485.569c0-34.9-108.856-64.018-253.726-70.808l.03.03Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const USDTCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-usdt-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
USDTCircleFilled.displayName = 'USDTCircleFilled';