@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 2.31 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: "M1598.1 730.3V2209L348.5 1483.4C-18.4 1272.2 9.1 1134.4 0 840.5l1285.5 744V904.8l312.3-174.5h.3z",
fill: "#99bee7"
}), /*#__PURE__*/_jsx("path", {
d: "M1285.5 1584.5 0 840.5 1249.1 124c367.1-211.1 468.4-119.2 734.7 28.2L698 895.6l587.5 339.9v349z",
fill: "#5592d7"
}), /*#__PURE__*/_jsx("path", {
d: "m698 895.6 1286.3-743.5v1433.1c0 431.7-129 468.4-385.8 624.5V730.3L1013 1078.2 698 895.6z",
fill: "#29578a"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1984.3 2209.8"
};
/** */
export const MaidColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-maid-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MaidColorful.displayName = 'MaidColorful';