@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 3.08 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: "M0 0h2500v2500H0z",
fill: "none"
}), /*#__PURE__*/_jsx("path", {
d: "M213 0h1010c675 0 1224 561 1224 1250s-549 1250-1224 1250H213c-89 0-161-74-161-165V164C52 73 124-1 213-1v1zm438 773 674 423 276-173c27-17 58-29 89-34L847 459c-86-54-200-28-254 59s-28 201 59 255h-1zm-87 9c15 17 33 32 53 45l315 198v826c0 102-83 185-184 185-102 0-184-83-184-185V781v1zm1070 295c86-54 200-28 254 59s28 201-59 255l-843 530c6-22 10-45 10-69v-374l638-401z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#01d4c9"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
export const PlaColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pla-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PlaColorful.displayName = 'PlaColorful';