@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 3.25 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: "M870.552 860.231v-131.05a19.53 19.53 0 0 0-5.752-13.833L306.744 157.747A19.56 19.56 0 0 0 292.898 152H161.745C155.27 152 150 157.265 150 163.735V285.49a19.53 19.53 0 0 0 5.752 13.834l200.313 200.148c4.58 4.579 4.58 12.012 0 16.589l-202.62 202.452a11.75 11.75 0 0 0-3.445 8.295V860.23c0 6.464 5.27 11.735 11.745 11.735h219.152c6.475 0 11.743-5.271 11.743-11.735v-78.6c0-3.098 1.242-6.092 3.446-8.294l108.697-108.61c4.58-4.577 12.02-4.577 16.602 0l201.69 201.528A19.56 19.56 0 0 0 736.92 872h121.854c6.476 0 11.744-5.27 11.744-11.735zm-292.34-534.685H687.98c6.507 0 11.812 5.3 11.812 11.803v109.675c0 10.531 12.744 15.798 20.183 8.328l150.578-150.695A11.78 11.78 0 0 0 874 296.33V164.353c0-6.504-5.276-11.804-11.817-11.804l-134.047-.172a11.93 11.93 0 0 0-8.37 3.442l-149.922 149.56c-7.44 7.434-2.171 20.167 8.335 20.167z",
fill: "currentColor"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const XverseFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xverse-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XverseFilled.displayName = 'XverseFilled';