@ant-design/web3-icons
Version:
A collection of Web3 icons.
84 lines • 8.22 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: "M0 0h600v600H0V0z",
fill: "#FFF"
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id,
gradientUnits: "userSpaceOnUse",
x1: "17.678",
y1: "198.187",
x2: "578.183",
y2: "400.101",
gradientTransform: "matrix(1 0 0 -1 0 599.89)",
children: [/*#__PURE__*/_jsx("stop", {
offset: "0",
stopColor: "#3B3C44"
}), /*#__PURE__*/_jsx("stop", {
offset: ".521",
stopColor: "#1C1D22"
}), /*#__PURE__*/_jsx("stop", {
offset: ".766",
stopColor: "#0E0D0D"
}), /*#__PURE__*/_jsx("stop", {
offset: "1"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M600 300c0 165.7-134.3 300-300 300S0 465.7 0 300 134.3 0 300 0s300 134.3 300 300z",
fill: `url(#${_id})`
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id2,
gradientUnits: "userSpaceOnUse",
x1: "83",
y1: "279.89",
x2: "516.404",
y2: "279.89",
gradientTransform: "matrix(1 0 0 -1 0 599.89)",
children: [/*#__PURE__*/_jsx("stop", {
offset: ".344",
stopColor: "#FFF"
}), /*#__PURE__*/_jsx("stop", {
offset: ".495",
stopColor: "#8D9ACA"
}), /*#__PURE__*/_jsx("stop", {
offset: "1",
stopColor: "#FF784A"
})]
}), /*#__PURE__*/_jsx("path", {
fill: `url(#${_id2})`,
d: "m499.6 254.4-59.7-9.8 44-18.4 12.3-49-14.8-26.2-75.3-22 35.9 51.5.4.6-21.3 5.3-65.2-44.7-56.2 6.7-56.2-6.7-65.2 44.7-21.3-5.3.4-.6 35.9-51.5-75.3 22-14.7 26.2 12.3 49 44 18.4-59.7 9.8L83 299.8l49.7 24 41.7-14.7 5.9 43.8 28.9 67.4 14.3 37.2 73.2 51.4v.1l2.8 2 .1-.1h.1l2.8-2v-.1l73.2-51.4 14.3-37.2 29-67.4 5.9-43.8 41.7 14.7 49.7-24-16.7-45.3zm-26.5-92.9 6.8 12.1-24.4 4.5-19.1-27.3 36.7 10.7zm-47 75.5v-39.1l24-6 19.1 27.1-43.1 18zm37.2-47.8 17.9-3.3-5.3 21.2-12.6-17.9zm2.6 121.3-39.9-14v-41.6l64.4 10.5 10.5 28.2-35 16.9zm-113.2-156 61 41.8v35.3l-39.8 20.7-64.6-92.6 43.4-5.2zm14.2 291.6L310 430.3l46.4-38.1 18.1 34-7.6 19.9zm-77.5-15.8-56.9 15.8-7.7-19.9 18.1-34 46.5 38.1zm-97-80.7-6-44.2 46.2-12.1 16.8 57.4-13.9 29.1-16.7 31.3-26.4-61.5zm48.6-71.3-5.5-18.4 64.2-92.6 64.2 92.6-5.5 18.4H241zm93.7 79.2-20.1 53.1-14.9 12.3-14.9-12.3-20.1-53.1h70zm-74-12.4-15.9-54.5h109.8l-15.9 54.5h-78zm29.4-185.5-64.6 92.6-39.8-20.7v-35.3l61-41.8 43.4 5.2zM356.4 456l-56.7 39.8L243 456l56.7-15.7 56.7 15.7zM407 349.6l-26.4 61.6-16.7-31.3-13.9-29.2 16.8-57.4 46.2 12.1-6 44.2zm-273.5-39.1-35-16.9 10.5-28.2 64.4-10.5v41.5l-39.9 14.1zm-10-103.4-5.3-21.2 17.9 3.3-12.6 17.9zm39.6-56.4L144 178.1l-24.4-4.5 6.8-12.1 36.7-10.8zM130.3 219l19.1-27.1 24 6V237l-43.1-18z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 600 600",
xmlSpace: "preserve"
};
/** */
export const CowCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-cow-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CowCircleColorful.displayName = 'CowCircleColorful';