@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 4.61 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("path", {
d: "M912 512c0 220.916-179.084 400-400 400-220.914 0-400-179.084-400-400 0-220.914 179.086-400 400-400 220.916 0 400 179.086 400 400Z",
fill: "#50AF95"
}), /*#__PURE__*/_jsx("path", {
d: "M570.59 531.752c-3.245.244-20.008 1.244-57.4 1.244-29.742 0-50.858-.892-58.266-1.244C339.99 526.696 254.2 506.687 254.2 482.73c0-23.957 85.79-43.94 200.725-49.077v78.171c7.517.541 29.038 1.812 58.78 1.812 35.688 0 53.56-1.487 56.777-1.785v-78.144c114.692 5.11 200.292 25.12 200.292 49.023 0 23.903-85.572 43.912-200.292 48.995l.109.027Zm0-106.13v-69.951h160.06V249H294.864v106.671h160.033v69.924C324.821 431.571 227 457.34 227 488.22s97.82 56.62 227.897 62.623V775h115.666V550.761C700.34 544.785 798 519.044 798 488.191c0-30.851-97.577-56.593-227.437-62.596l.027.027Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const UsdtCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-usdt-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
UsdtCircleColorful.displayName = 'UsdtCircleColorful';