@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 3.24 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: "M26 10c-1.5-.8-3.3-.8-4.7 0l-7.1 4.1 7.1 4.1c1.5.8 3.3.8 4.7 0 1.5-.8 2.4-2.4 2.4-4.1 0-1.7-.9-3.3-2.4-4.1zM2.4 10C.9 10.8 0 12.4 0 14.1c0 1.7.9 3.2 2.4 4.1 1.5.8 3.3.8 4.7 0l7.1-4.1L7.1 10c-1.5-.8-3.3-.8-4.7 0zM10.1 25.8c.8 1.5 2.4 2.3 4.1 2.3 1.7 0 3.3-.9 4.1-2.3.8-1.5.8-3.2 0-4.7l-4.1-7-4.1 7c-.8 1.5-.8 3.2 0 4.7zM18.3 2.3C17.5.9 15.9 0 14.2 0c-1.7 0-3.3.9-4.1 2.3-.8 1.5-.8 3.2 0 4.7l4.1 7 4.1-7c.8-1.4.8-3.2 0-4.7z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#050505"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 28.4 28.1",
xmlSpace: "preserve",
enableBackground: "new 0 0 28.4 28.1"
};
/** */
export const NoiaColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-noia-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
NoiaColorful.displayName = 'NoiaColorful';