@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 3.43 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("path", {
d: "M22.8 45.5c12.6 0 22.8-10.2 22.8-22.8C45.5 10.2 35.3 0 22.8 0S0 10.2 0 22.8c0 12.5 10.2 22.7 22.8 22.7z",
fill: "#1c68f3"
}), /*#__PURE__*/_jsx("path", {
d: "M36.5 17.2v7.6h-24c1 4.6 5.2 8 10.2 8 4.1 0 7.7-2.3 9.4-5.7h4.5v6.3c0 1.5-1.2 2.7-2.8 2.7H11.6c-1.5 0-2.8-1.2-2.8-2.7V17.2h27.7zM29.4 27c-1.5 2.1-3.9 3.5-6.7 3.5S17.4 29.1 16 27h13.4zm-12.6-8c-2.2 0-4 1.6-4.3 3.6h2.4c.3-.8 1-1.4 1.9-1.4s1.6.6 1.9 1.4H21c-.3-2.1-2.1-3.6-4.2-3.6zm11.8 0c-2.2 0-4 1.6-4.3 3.6h2.4c.3-.8 1-1.4 1.9-1.4s1.6.6 1.9 1.4h2.4c-.4-2.1-2.2-3.6-4.3-3.6zm5.1-10.2c1.5 0 2.8 1.2 2.8 2.7v3.3H8.8v-3.3c0-1.5 1.2-2.7 2.8-2.7h22.1z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 45.5 45.5",
xmlSpace: "preserve",
enableBackground: "new 0 0 45.5 45.5"
};
/** */
export const MaskCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-mask-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MaskCircleColorful.displayName = 'MaskCircleColorful';