@ant-design/web3-icons
Version:
A collection of Web3 icons.
38 lines • 5.06 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("g", {
fill: "#555",
fillRule: "evenodd",
children: /*#__PURE__*/_jsx("path", {
d: "M312.778 867H178.262c-28.265 0-42.228 0-50.74-5.445-9.196-5.962-14.815-15.837-15.496-26.736-.511-10.041 6.47-22.305 20.433-46.823l332.136-585.408c14.133-24.859 21.284-37.288 30.308-41.885 9.706-4.937 21.285-4.937 30.99 0 9.025 4.597 16.177 17.026 30.308 41.885l68.28 119.186.349.608c15.264 26.67 23.005 40.193 26.385 54.387a101.109 101.109 0 0 1 0 47.334c-3.406 14.302-11.068 27.924-26.563 54.996L450.189 787.486l-.452.79c-15.365 26.888-23.151 40.516-33.943 50.797a101.553 101.553 0 0 1-41.377 24.014C360.284 867 344.449 867 312.777 867ZM652.474 867H845.22c28.435 0 42.74 0 51.26-5.611 9.192-5.962 14.979-16.012 15.495-26.902.49-9.718-6.34-21.504-19.723-44.597-.461-.787-.923-1.587-1.393-2.4L794.31 622.332l-1.099-1.86c-13.567-22.941-20.415-34.526-29.21-39.004a33.904 33.904 0 0 0-30.818 0c-8.855 4.597-16.006 16.686-30.138 41.033L606.84 787.66l-.33.569c-14.083 24.308-21.12 36.456-20.613 46.424.68 10.899 6.3 20.94 15.494 26.902C609.736 867 624.039 867 652.474 867Z"
})
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const AvaxFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-avax-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AvaxFilled.displayName = 'AvaxFilled';