@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 2.06 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: "M0 0h60.4v346H0zM225.5 0h75.7L170.7 173l130.5 173h-75.7L93.2 173z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 301.2 346",
xmlSpace: "preserve",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const KavaColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-kava-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
KavaColorful.displayName = 'KavaColorful';