@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 2.14 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: "M61.7 60.8H73l-5.6-15.7-5.7 15.7z",
fill: "#161f37"
}), /*#__PURE__*/_jsx("path", {
d: "M55.7 0a55.7 55.7 0 1 0 55.7 55.7A55.78 55.78 0 0 0 55.7 0Zm24.9 82.1-3.8-10.7H57.9l-3.8 10.7h-34L39 29.4h11.3l-15.1 42h11.3l15.1-42H73l19 52.7Z",
fill: "#161f37"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 111.4 111.4"
};
/** */
export const LaCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-la-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
LaCircleColorful.displayName = 'LaCircleColorful';