@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 2.44 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: "M500.9 0h-44.7c-10.9 0-20.9 6.3-25.6 16.1L313 260.8l-.1-.3-31.3 65.2.1.3-31.3 65.2L94 65.3h44.6c10.9 0 20.9 6.3 25.6 16.1l102.1 211.4 31.3-65.2L215.2 57c-16.7-34.8-51.9-57-90.5-57H0l31.2 65.3h.1l187.7 391h62.6L500.9 0z",
fill: "#82be00"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 500.9 456.3",
xmlSpace: "preserve",
enableBackground: "new 0 0 500.9 456.3"
};
/** */
export const VetColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-vet-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
VetColorful.displayName = 'VetColorful';