@ant-design/web3-icons
Version:
A collection of Web3 icons.
41 lines • 7.68 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: "#555",
fillRule: "nonzero",
children: [/*#__PURE__*/_jsx("path", {
d: "M658.27 590.085c0-77.585-46.54-104.186-139.621-115.268-66.487-8.87-79.784-26.602-79.784-57.64s22.164-50.984 66.486-50.984c39.892 0 62.056 13.3 73.135 46.552 2.218 6.65 8.867 11.082 15.516 11.082h35.455c8.867 0 15.516-6.65 15.516-15.514v-2.218c-8.867-48.77-48.759-86.454-99.73-90.886v-53.203c0-8.868-6.648-15.519-17.728-17.737h-33.243c-8.867 0-15.515 6.65-17.733 17.737v50.984c-66.486 8.87-108.59 53.203-108.59 108.624 0 73.154 44.322 101.968 137.402 113.056 62.056 11.082 82.002 24.382 82.002 59.852s-31.03 59.853-73.135 59.853c-57.625 0-77.57-24.388-84.22-57.64-2.212-8.863-8.86-13.3-15.51-13.3H376.81c-8.86 0-15.51 6.65-15.51 15.52v2.218c8.862 55.415 44.323 95.317 117.458 106.405v53.202c0 8.864 6.648 15.514 17.728 17.733h33.243c8.867 0 15.515-6.65 17.733-17.733v-53.202c66.486-11.088 110.809-57.64 110.809-117.493Z"
}), /*#__PURE__*/_jsx("path", {
d: "M398.973 822.846C226.11 760.78 137.46 567.921 201.733 397.226c33.242-93.104 106.377-164.04 197.24-197.291 8.867-4.432 13.298-11.082 13.298-22.17v-31.033c0-8.868-4.431-15.519-13.298-17.732-2.218 0-6.648 0-8.866 2.213C179.568 197.716 64.324 421.614 130.81 632.206 170.702 756.343 266 851.666 390.107 891.568c8.866 4.432 17.733 0 19.946-8.869 2.218-2.213 2.218-4.431 2.218-8.863v-31.039c0-6.65-6.65-15.513-13.298-19.95Zm234.92-691.633c-8.866-4.432-17.733 0-19.946 8.87-2.218 2.218-2.218 4.43-2.218 8.868v31.033c0 8.869 6.65 17.732 13.298 22.17 172.864 62.066 261.514 254.925 197.24 425.62-33.242 93.104-106.377 164.04-197.24 197.291-8.867 4.432-13.298 11.082-13.298 22.17v31.033c0 8.868 4.431 15.519 13.298 17.732 2.218 0 6.648 0 8.866-2.213 210.539-66.503 325.783-290.401 259.297-500.993-39.892-126.356-137.409-221.679-259.297-261.58Z"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const UsdcFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-usdc-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
UsdcFilled.displayName = 'UsdcFilled';