@ant-design/web3-icons
Version:
A collection of Web3 icons.
66 lines • 3.99 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__*/_jsx("circle", {
cx: "125",
cy: "125",
r: "125"
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id,
gradientUnits: "userSpaceOnUse",
x1: "124.655",
y1: "52.323",
x2: "124.655",
y2: "189.503",
gradientTransform: "matrix(1 0 0 -1 0 252)",
children: [/*#__PURE__*/_jsx("stop", {
offset: "0",
stopColor: "#FFE600"
}), /*#__PURE__*/_jsx("stop", {
offset: ".307",
stopColor: "#FAAD14"
}), /*#__PURE__*/_jsx("stop", {
offset: ".672",
stopColor: "#F7169C"
}), /*#__PURE__*/_jsx("stop", {
offset: "1",
stopColor: "#3435F5"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M137.6 193.1h-25.8c6.3 8.8 19.5 8.8 25.8 0zm4.7-8.1H107l-9.3-16.3h53.8l-9.2 16.3zm-49.2-24.5h63.1l9.3-16.3H83.9l9.2 16.3zM79.2 136 70 119.7h109.3L170 136H79.2zm-13.8-24.5H184l10.9-19.3H54.4l11 19.3zM49.9 84.1C45.7 73.8 53.2 62 64.7 62h119.8c11.6 0 19.1 11.8 14.8 22.1H49.9z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: `url(#${_id})`
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 250 250",
xmlSpace: "preserve"
};
/** */
export const MphCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-mph-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MphCircleColorful.displayName = 'MphCircleColorful';