@ant-design/web3-icons
Version:
A collection of Web3 icons.
54 lines • 3.76 kB
JavaScript
import { useUniqueInlineId } from '@inline-svg-unique-id/react';
// 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) {
const _id = useUniqueInlineId();
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsxs("linearGradient", {
id: _id,
gradientUnits: "userSpaceOnUse",
x1: "0",
y1: "-2",
x2: "2000",
y2: "-2",
gradientTransform: "translate(0 1002)",
children: [/*#__PURE__*/_jsx("stop", {
offset: "0",
stopColor: "#B38C30"
}), /*#__PURE__*/_jsx("stop", {
offset: "1",
stopColor: "#F2DE98"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M1000 0C447.6 0 0 447.6 0 1000s447.6 1000 1000 1000 1000-447.6 1000-1000S1552.4 0 1000 0zM548.6 741.5c0-123.6 100.2-223.1 224.6-223.1h512.4c58.6 0 114.9 23 156.7 64.1l-262.2 131.9h-361c-40.7 0-73.1 29.4-73.1 64.8v160.5l-196.7 102.5V741.5h-.7zm959.3 333.9c0 123.6-100.2 223.1-223.1 223.1H745.3v190.7c0 32.4-24.1 58.8-52.8 65.6l-67.1 1.5h-76.9v-331.6l257-134.1h431.8c40.7 0 74.6-29.4 74.6-65.6V828.9l195.9-98.7.1 345.2z",
fill: `url(#${_id})`
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 2000",
xmlSpace: "preserve"
};
/** */
export const ArrrCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-arrr-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ArrrCircleColorful.displayName = 'ArrrCircleColorful';