@ant-design/web3-icons
Version:
A collection of Web3 icons.
38 lines • 2.22 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: "M254.5 207.4v-2.9l-2.5-.5v2.9l-2.5-.6v2.9l-2.5-.6v9.3l2.5.6v2.9l2.5.6v-2.9l2.5.6v-2.9l2.5.6v-9.3l-2.5-.7zm-2 9.9-3.5-.8V211l3.5.8v5.5z",
transform: "translate(-246.93 -203.96)",
fill: "#232c45"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 10.1 18",
xmlSpace: "preserve",
enableBackground: "new 0 0 10.1 18"
};
/** */
export const MirColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-mir-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MirColorful.displayName = 'MirColorful';