@ant-design/web3-icons
Version:
A collection of Web3 icons.
38 lines • 2.79 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: "nonzero",
children: /*#__PURE__*/_jsx("path", {
d: "M794.813 181h115.625L669.813 419.43c-87.141 86.3-228.422 86.3-315.625 0L113.468 181h115.72L412 362.121c55.423 54.665 144.437 54.665 199.86 0L794.811 181ZM227.703 844H112l242.188-239.9c87.14-86.3 228.421-86.3 315.625 0L912 844H796.375L612 661.41c-55.423-54.666-144.437-54.666-199.86 0L227.704 844Z"
})
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const XrpFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xrp-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XrpFilled.displayName = 'XrpFilled';