@ant-design/web3-icons
Version:
A collection of Web3 icons.
51 lines • 3.55 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", {
transform: "translate(112 112)",
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
stroke: "#979797",
strokeWidth: ".781",
fill: "#555",
cx: "400",
cy: "400",
r: "399.609"
}), /*#__PURE__*/_jsx("g", {
fill: "#FFF",
fillRule: "nonzero",
children: /*#__PURE__*/_jsx("path", {
d: "M569.834 203h69.23L494.99 345.404c-52.175 51.544-136.767 51.544-188.98 0L161.88 203h69.286l109.459 108.176c33.184 32.65 86.481 32.65 119.666 0L569.834 203ZM230.277 598H161l145.01-143.282c52.175-51.543 136.767-51.543 188.98 0L640 598h-69.23L460.375 488.946c-33.184-32.65-86.481-32.65-119.666 0L230.277 598Z"
})
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const XrpCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xrp-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XrpCircleFilled.displayName = 'XrpCircleFilled';