@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 3.29 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: "M100 0c55.2 0 100 44.8 100 100s-44.8 100-100 100S0 155.2 0 100 44.8 0 100 0z",
fill: "#32253e"
}), /*#__PURE__*/_jsx("path", {
d: "M103.8 38.3C77 37.8 54.1 59.7 53.5 86.5c-.5 18.2 8.9 34.2 23.1 43.1.7.4 1.6.1 2-.6l11.1-22.2c1.7-3.2 1.4-7.2-.6-10.2-1.7-2.6-2.7-5.8-2.6-9.1.1-8.7 6.9-15.8 15.5-16.3 9.9-.5 18.1 7.8 17.3 17.8-.6 8-7.1 14.5-15.1 15.1h-.2c-3.7.3-6.9 2.4-8.5 5.7l-11.1 22.1c-.4.7 0 1.6.7 1.9 5.6 2.2 11.7 3.3 18.1 3.3 27-.1 49.1-22.3 49.1-49.4.1-27-21.6-49-48.5-49.4z",
fill: "#dae9eb"
}), /*#__PURE__*/_jsx("circle", {
cx: "69.9",
cy: "153.6",
r: "16.5",
fill: "#dae9eb"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 200 200",
xmlSpace: "preserve",
enableBackground: "new 0 0 200 200"
};
/** */
export const PenCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pen-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PenCircleColorful.displayName = 'PenCircleColorful';