@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 6.56 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: "m892.045 704.575-126.782 132.46a29.447 29.447 0 0 1-9.796 6.74 30.102 30.102 0 0 1-11.742 2.373H142.718c-2.867 0-5.673-.817-8.07-2.348a14.44 14.44 0 0 1-5.428-6.276 13.999 13.999 0 0 1-1.007-8.147 14.2 14.2 0 0 1 3.744-7.35l126.877-132.46a29.443 29.443 0 0 1 9.766-6.726 30.106 30.106 0 0 1 11.708-2.387h600.973c2.868 0 5.673.817 8.073 2.348a14.5 14.5 0 0 1 5.429 6.276 14.016 14.016 0 0 1 1.004 8.147 14.214 14.214 0 0 1-3.742 7.35ZM765.263 437.84a29.447 29.447 0 0 0-9.796-6.74 30.115 30.115 0 0 0-11.742-2.373H142.718c-2.867 0-5.673.816-8.07 2.348a14.443 14.443 0 0 0-5.428 6.275 14.002 14.002 0 0 0-1.007 8.148 14.206 14.206 0 0 0 3.744 7.35l126.877 132.46a29.454 29.454 0 0 0 9.766 6.726 30.105 30.105 0 0 0 11.708 2.387h600.973c2.868 0 5.673-.816 8.073-2.348a14.498 14.498 0 0 0 5.429-6.275 14.018 14.018 0 0 0 1.004-8.148 14.22 14.22 0 0 0-3.742-7.35L765.263 437.84Zm-622.545-95.146h601.007c4.04 0 8.037-.806 11.742-2.374a29.447 29.447 0 0 0 9.796-6.74l126.782-132.459a14.215 14.215 0 0 0 3.742-7.35 14.016 14.016 0 0 0-1.004-8.148 14.496 14.496 0 0 0-5.43-6.275 15.01 15.01 0 0 0-8.072-2.348H280.308a30.11 30.11 0 0 0-11.708 2.386 29.45 29.45 0 0 0-9.766 6.727L131.99 318.573a14.2 14.2 0 0 0-3.743 7.342c-.487 2.75-.14 5.58.999 8.14a14.438 14.438 0 0 0 5.414 6.277 15.004 15.004 0 0 0 8.058 2.362Z",
fill: "currentColor",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const SolanaFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-solana-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SolanaFilled.displayName = 'SolanaFilled';