@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 3.71 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", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
cx: "512",
cy: "512",
r: "512",
fill: "#EE7A30"
}), /*#__PURE__*/_jsx("path", {
d: "M870.011 860.231v-131.05a19.53 19.53 0 0 0-5.747-13.833L306.626 157.747A19.54 19.54 0 0 0 292.791 152H161.736c-6.47 0-11.736 5.265-11.736 11.735V285.49a19.53 19.53 0 0 0 5.747 13.834L355.91 499.472c4.577 4.579 4.577 12.012 0 16.589L153.442 718.513a11.75 11.75 0 0 0-3.442 8.295V860.23c0 6.464 5.266 11.735 11.736 11.735h218.987c6.47 0 11.735-5.271 11.735-11.735v-78.6a11.75 11.75 0 0 1 3.443-8.294l108.615-108.61c4.577-4.577 12.011-4.577 16.59 0l201.538 201.528A19.54 19.54 0 0 0 736.48 872h121.763c6.47 0 11.735-5.27 11.735-11.735zM578.682 325.98h109.592c6.497 0 11.793 5.294 11.793 11.79v109.558c0 10.52 12.724 15.78 20.152 8.32l150.338-150.535a11.77 11.77 0 0 0 3.443-8.319V164.96c0-6.497-5.267-11.79-11.798-11.79l-133.835-.173a11.9 11.9 0 0 0-8.356 3.438l-149.685 149.4c-7.428 7.425-2.167 20.145 8.322 20.145z",
fill: "#000",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const XverseCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xverse-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XverseCircleColorful.displayName = 'XverseCircleColorful';