@ant-design/web3-icons
Version:
A collection of Web3 icons.
34 lines • 2.07 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: "M766.967 274.726 187 168l305.217 768 425.271-518.125-150.52-143.149Zm-9.332 47.027 88.714 84.32-242.648 43.94 153.934-128.26ZM551.009 441.225 295.251 229.116 713.26 306.03 551.01 441.225Zm-18.23 37.512L491.093 823.5 266.237 257.659 532.78 478.737Zm38.602 18.302 268.686-48.66-308.195 375.484 39.51-326.824Z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const TronFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tron-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TronFilled.displayName = 'TronFilled';