@ant-design/web3-icons
Version:
A collection of Web3 icons.
50 lines • 4.33 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("circle", {
cx: "62",
cy: "62",
r: "60",
fill: "#f2e3ee"
}), /*#__PURE__*/_jsx("circle", {
cx: "62",
cy: "62",
r: "62",
fill: "#d9327c"
}), /*#__PURE__*/_jsx("path", {
d: "M59.6 32.7c-.5.4-1.1 1.1-1.5 2.4-.4 1.3-2.6 7.7-5.4 15.7h18.7c-2.8-8-5-14.4-5.4-15.7-.4-1.3-1-2-1.5-2.4-.5-.4-1.2-.7-2.5-.7s-1.9.3-2.4.7zM32 50.8h12.7c3.1-9.1 5.8-16.7 6.2-18.1.8-2.4 2.1-4.5 4.1-6 2-1.5 4.4-2.2 6.9-2.2s4.9.6 6.9 2.2c2 1.5 3.3 3.6 4.1 6 .5 1.4 3.1 8.9 6.2 18.1H92c2.1 0 3.8 1.7 3.8 3.8s-1.7 3.8-3.8 3.8H32c-2.1 0-3.7-1.7-3.7-3.8s1.7-3.8 3.7-3.8zm0 15c-2.1 0-3.7 1.7-3.7 3.8s1.7 3.8 3.7 3.8h5l-2 5.8-2 5.8-.8 2.2c-.7 2 .4 4.1 2.3 4.8 2 .7 4.1-.4 4.8-2.3l.8-2.2 2-5.8c.8-2.4 1.8-5.2 2.9-8.3h34.2c1 3 2 5.9 2.9 8.3l2 5.8.8 2.2c.7 2 2.8 3 4.8 2.3 2-.7 3-2.8 2.3-4.8l-.8-2.2-2-5.8-2-5.8h5c2.1 0 3.8-1.7 3.8-3.8s-1.7-3.8-3.8-3.8H32zm56.3 22.5 3.5-1.2-3.5 1.2zm0 0-3.5 1.2 3.5-1.2zm-52.5 0 3.5 1.2-3.5-1.2zm0 0-3.5-1.2 3.5 1.2z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 124.1 124.1",
xmlSpace: "preserve",
enableBackground: "new 0 0 124.1 124.1"
};
/** */
export const AmpCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-amp-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AmpCircleColorful.displayName = 'AmpCircleColorful';