@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 2.72 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: "M27.3 13.7H9.2c-5 0-9 3.9-9.2 8.9 0 .1.1.2.2.2h18.1c5 0 9-3.9 9.2-8.9 0-.1-.1-.2-.2-.2zM36.4 0H9.2c-5 0-9 3.9-9.2 8.9 0 .1.1.3.2.3h27.3c5 0 9-3.9 9.2-8.9 0-.2-.1-.3-.3-.3z",
fill: "#e62058"
}), /*#__PURE__*/_jsx("circle", {
cx: "4.6",
cy: "32",
r: "4.6",
fill: "#e62058"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 36.7 36.6",
xmlSpace: "preserve",
enableBackground: "new 0 0 36.7 36.6"
};
/** */
export const FlrColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-flr-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FlrColorful.displayName = 'FlrColorful';