@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 4.94 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: "M239.53 140h547.849c20.936 0 38.384 3.49 59.32 13.956 24.427 10.468 38.385 27.913 45.364 41.87 0 0 0 3.488 3.49 3.488C906.02 216.76 913 237.694 913 262.118c0 20.934-3.49 41.869-17.447 62.803l-345.46 593.145C543.114 932.022 529.157 939 511.71 939c-13.958 0-27.916-6.978-38.384-20.934L134.845 324.92c-6.98-13.956-20.937-31.401-20.937-59.314-3.49-24.424 3.49-45.358 13.958-66.293 10.468-20.934 27.916-38.38 52.342-45.358C201.145 140 225.571 140 239.529 140Zm230.305 83.738H239.53c-13.958 0-20.937 0-24.426 3.49-6.98 3.488-10.469 6.977-13.958 13.955-3.49 3.49-3.49 10.468-3.49 17.446 0 3.489 3.49 6.978 10.469 20.934l261.711 453.581V223.738Zm83.748 0v512.895l265.2-457.07c3.49-6.978 3.49-13.956 3.49-20.934 0-6.978 0-13.957-3.49-17.446-3.489-3.489-3.489-6.978-6.978-6.978l-3.49-3.489c-6.979-3.489-13.958-3.489-24.426-3.489H553.583v-3.489Z",
fill: "#555",
fillRule: "evenodd"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const TonFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ton-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TonFilled.displayName = 'TonFilled';