@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 5.01 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: "M217.311 331.574c162.753-159.432 426.626-159.432 589.379 0l19.587 19.188a20.12 20.12 0 0 1 0 28.868l-67.005 65.638c-4.069 3.986-10.665 3.986-14.734 0l-26.955-26.405c-113.54-111.224-297.625-111.224-411.165 0l-28.866 28.277c-4.07 3.986-10.666 3.986-14.735 0l-67.005-65.638a20.12 20.12 0 0 1 0-28.867l21.5-21.06Zm727.951 135.747 59.635 58.418a20.12 20.12 0 0 1 0 28.867L736 818.021c-8.138 7.972-21.332 7.972-29.47 0L515.686 631.068c-2.034-1.993-5.332-1.993-7.367 0L317.476 818.021c-8.138 7.972-21.331 7.972-29.469 0L19.103 554.603a20.12 20.12 0 0 1 0-28.868l59.635-58.418c8.137-7.971 21.331-7.971 29.469 0l190.849 186.956c2.034 1.993 5.333 1.993 7.367 0l190.84-186.956c8.137-7.972 21.33-7.972 29.468 0l190.85 186.956c2.034 1.993 5.332 1.993 7.367 0L915.793 467.32c8.138-7.972 21.332-7.972 29.47 0Z",
fill: "#3B99FC",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const WalletConnectColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-wallet-connect-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
WalletConnectColorful.displayName = 'WalletConnectColorful';