@ant-design/web3-icons
Version:
A collection of Web3 icons.
34 lines • 3.45 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M577.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.561V215H270.708v120.664h178.531v79.097C304.128 421.52 195 450.669 195 485.599c0 34.93 109.128 64.048 254.239 70.839V810h129.035V556.346C723.054 549.586 832 520.468 832 485.569c0-34.9-108.856-64.018-253.726-70.808l.03.03Z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const USDTFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-usdt-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
USDTFilled.displayName = 'USDTFilled';