@ant-design/web3-icons
Version:
A collection of Web3 icons.
40 lines • 3.65 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: "#2C5CC6",
children: [/*#__PURE__*/_jsx("path", {
d: "M0 115v115h58c45.9 0 57.8-.3 57.5-1.3-.3-.6-16.5-41-35.9-89.7-19.5-48.7-35.1-88.6-34.7-88.8.4-.1 34.2 5.9 75.2 13.3 40.9 7.5 81.7 15 90.6 16.6 8.8 1.6 16.8 3.2 17.7 3.5 1.4.6 1.6-3.4 1.6-41.5V0H0v115z"
}), /*#__PURE__*/_jsx("path", {
d: "M88 75.4c0 .2 6.4 5.5 14.3 11.8 7.8 6.3 30.3 24.3 50 40.1s36.1 28.7 36.4 28.7c.3 0 9.7-7.3 20.9-16.3l20.3-16.2.1-11.8c0-6.4-.2-11.7-.5-11.7-.5 0-93-16.4-121.2-21.5C87.9 74.8 88 74.8 88 75.4zM79 93.1c1.2 3 10.7 26.8 21.2 52.9 28.7 71.4 32.8 81.9 32.8 83 0 .6 7.5 1 21.5 1 21.4 0 21.5 0 21.9-2.2.7-3 5.5-44.1 5.8-49.4l.3-4.1L159 155c-35.3-29.1-79.3-65.2-80.8-66.3-.8-.6-.5 1 .8 4.4zM220.8 153.2c-4.8 4-8.6 7.3-8.4 7.5.1.2 4.2-.4 8.9-1.3l8.7-1.6v-5.9c0-3.2-.1-5.9-.2-5.9-.2 0-4.2 3.3-9 7.2zM218.5 177.5c-3.3.7-9.5 1.8-13.8 2.5-4.2.7-7.7 1.5-7.7 1.8 0 .7-4.8 39.6-5.5 44.4l-.5 3.8h39v-54l-2.7.1c-1.6 0-5.5.6-8.8 1.4z"
})]
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 230 230"
};
/** */
export const TronlinkColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tronlink-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TronlinkColorful.displayName = 'TronlinkColorful';