@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 2.26 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: "M69 0H46v7.7h23V0zM30.7 7.7H23v7.7h7.7V7.7zM23 46h7.7V23H23v23zM38.3 7.7v7.7H46V7.7h-7.7zm0 38.3H46V23h-7.7v23zm0-46h-7.7v7.7h7.7V0zM0 0v7.7h23V0H0zm69 23v-7.7H46V23h23zm-38.3-7.7V23h7.7v-7.7h-7.7zM0 15.3V23h23v-7.7H0z",
fill: "#7c47ee"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 69 46",
xmlSpace: "preserve",
enableBackground: "new 0 0 69 46"
};
/** */
export const TColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-t-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TColorful.displayName = 'TColorful';