@ant-design/web3-icons
Version:
A collection of Web3 icons.
86 lines • 5.89 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 _id2 = useUniqueInlineId();
const _id = useUniqueInlineId();
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M1750 0c966.5 0 1750 783.5 1750 1750s-783.5 1750-1750 1750S0 2716.5 0 1750 783.5 0 1750 0z",
fill: "#00467a"
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id,
gradientUnits: "userSpaceOnUse",
x1: "1480.345",
y1: "249.463",
x2: "1252.889",
y2: "1538.512",
gradientTransform: "matrix(1 0 0 -1 0 2554)",
children: [/*#__PURE__*/_jsx("stop", {
offset: ".1",
stopColor: "#194aad"
}), /*#__PURE__*/_jsx("stop", {
offset: ".5",
stopColor: "#248fcb"
}), /*#__PURE__*/_jsx("stop", {
offset: ".8",
stopColor: "#2bbfdf"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M762.6 1521.6c-35.1 0-50.7 15.6-50.7 46.8v803.7c0 35.1 15.6 46.8 50.7 46.8 386.3 3.9 858.3-339.4 1248.5-608.6V881.7c-386.2 265.3-870 643.8-1248.5 639.9z",
fill: `url(#${_id})`
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id2,
gradientUnits: "userSpaceOnUse",
x1: "3511.147",
y1: "-1272.658",
x2: "3811.925",
y2: "432.942",
gradientTransform: "matrix(-1 0 0 1 5851.79 2174.83)",
children: [/*#__PURE__*/_jsx("stop", {
offset: ".1",
stopColor: "#194aad"
}), /*#__PURE__*/_jsx("stop", {
offset: ".5",
stopColor: "#248fcb"
}), /*#__PURE__*/_jsx("stop", {
offset: ".8",
stopColor: "#2bbfdf"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M2795.3 1884.4c35.1 0 50.7-15.6 50.7-46.8v-803.7c0-35.1-15.6-46.8-50.7-46.8-390.2-3.9-858.3 339.4-1248.5 608.6v924.7c386.3-265.3 870.1-643.8 1248.5-636z",
fill: `url(#${_id2})`
}), /*#__PURE__*/_jsx("path", {
d: "M2011.1 1810.3v-530.6c-160 101.4-319.9 210.7-468.2 312.1v530.6c163.9-101.4 320-210.7 468.2-312.1z",
fill: "#194aad"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 3500 3500",
xmlSpace: "preserve",
enableBackground: "new 0 0 3500 3500"
};
/** */
export const CotiCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-coti-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CotiCircleColorful.displayName = 'CotiCircleColorful';