@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 2.05 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M35.8 134.3 0 252.6h76.9l35.8-118.3H35.8zM270.2 0h-95.4l-24.1 78.7h85.7c15.2 0 24 12.5 19.3 27.8s-21 27.8-36.3 27.8h-85.8l-1.6 5.1-22.4 73.6H205c58.7 0 121.1-47.8 139-106.4C362 47.7 328.9 0 270.2 0ZM153.8 0h-77l-24 78.7h77l24-78.7z",
fill: "#1e69ff"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 348.9 252.6"
};
/** */
export const PmaColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pma-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PmaColorful.displayName = 'PmaColorful';