@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 2.05 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: "M50.2 12.8V64H12.6V12.9H0V0h12.4v12.6h12.8V0h12.5v12.9l12.5-.1zM38.6 24.9H24.5v14.4h14.1V24.9zM50.3 12.9V0h12.5v12.8l-12.5.1z"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 62.8 64",
xmlSpace: "preserve",
enableBackground: "new 0 0 62.8 64"
};
/** */
export const RookColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-rook-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
RookColorful.displayName = 'RookColorful';