@ant-design/web3-icons
Version:
A collection of Web3 icons.
55 lines • 3.7 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__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M500 0c276.1 0 500 223.9 500 500s-223.9 500-500 500S0 776.1 0 500 223.9 0 500 0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#263145"
}), /*#__PURE__*/_jsx("path", {
d: "M530.7 177h-69.9L172 680h514.8L650 620H276z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#ccd9e2"
}), /*#__PURE__*/_jsx("path", {
d: "m785.3 739 35.7-60.5L529.7 177 275 620h70l185.7-323.5z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#aaa"
}), /*#__PURE__*/_jsx("path", {
d: "m172 680 35.7 59h577.6L530.7 295.1l-35.2 62L684.4 680z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#5a5967"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1000 1000",
xmlSpace: "preserve",
enableBackground: "new 0 0 1000 1000"
};
/** */
export const ArpaCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-arpa-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ArpaCircleColorful.displayName = 'ArpaCircleColorful';