@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 3.57 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: "M423.7 499.4v70.9a14.19 14.19 0 0 1-14.2 14.2h-70.9a14.19 14.19 0 0 1-14.2-14.2v-70.9a14.19 14.19 0 0 1 14.2-14.2h70.9a14.19 14.19 0 0 1 14.2 14.2Zm98.6 95.1h-70.9a14.19 14.19 0 0 0-14.2 14.2v170.6a14.19 14.19 0 0 0 14.2 14.2h70.9a14.19 14.19 0 0 0 14.2-14.2V608.7a14.19 14.19 0 0 0-14.2-14.2Zm211.2 0H680a38.09 38.09 0 0 1-38.1-38.1v-57a14.19 14.19 0 0 0-14.2-14.2h-70.9a14.19 14.19 0 0 0-14.2 14.2v70.9a14.19 14.19 0 0 0 14.2 14.2h26a31.08 31.08 0 0 1 4.3-.3h23.2a38.09 38.09 0 0 1 38.1 38.1v156.9a14.19 14.19 0 0 0 14.2 14.2h70.9a14.19 14.19 0 0 0 14.2-14.2V608.7a14.19 14.19 0 0 0-14.2-14.2Zm205.3 0h-53.5a38.09 38.09 0 0 1-38.1-38.1v-57a14.19 14.19 0 0 0-14.2-14.2h-71a14.19 14.19 0 0 0-14.2 14.2v70.9a14.19 14.19 0 0 0 14.2 14.2h26a31.08 31.08 0 0 1 4.3-.3h23.2a38.09 38.09 0 0 1 38.1 38.1v156.9a14.19 14.19 0 0 0 14.2 14.2h70.9a14.19 14.19 0 0 0 14.2-14.2V608.7a14 14 0 0 0-14.1-14.2Z",
transform: "translate(-324.4 -485.2)",
fill: "#231f20"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 628.5 308.3"
};
/** */
export const MetaColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-meta-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MetaColorful.displayName = 'MetaColorful';