@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 2.45 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: "m1047.4 982.5 683.3 678.3c359.1-380.9 359.1-975.7 0-1356.6M997.5 1027.4l-673.3 668.3L997.5 1975l673.3-279.3M972.6 957.6l698.3-693.3L1027.4 0 389 1541.2l583.6-583.6zM0 982.5c-.5 252.3 95.9 495.1 269.3 678.3l668.3-1611",
fill: "#4f473b"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 1975.1",
xmlSpace: "preserve",
enableBackground: "new 0 0 2000 1975.1"
};
/** */
export const KlayColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-klay-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
KlayColorful.displayName = 'KlayColorful';