@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 2.32 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: "m286.3 100.1-38.1 66-38.1 66-38 65.9-38.1-65.9 38.1-66 38.1-65.9L152.4 0h76.1l19.8 34.2 38 65.9zM76.2 0H0l95.9 166.1 38.1-65.9L76.2 0zm323.5 34.2L379.9 0h-76.1l57.8 100.1-38.1 66-38.1 66 38.1 65.9 38.1-65.9 38.1-66 38.1-65.9-38.1-66z"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 437.8 298",
xmlSpace: "preserve",
enableBackground: "new 0 0 437.8 298"
};
/** */
export const WingColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-wing-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
WingColorful.displayName = 'WingColorful';