@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 4.02 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";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M995 128 881 7c198-25 719 7 1224 341 7 46 5 92 5 92l37 20h1c21 36 42 89 55 152 16 76 21 163 2 247s-56 154-91 205c-26 38-51 64-68 78-64 1-185 45-219 194-103 59-266 118-480 118-205 0-414-59-571-174-156-114-262-283-262-506 0-177 80-316 180-417 101-102 239-185 320-212l-20-17h1zm886 291c-40 43-77 64-88 70-232-52-316-177-316-177 219-1 417 53 561 145 0 0-78-27-158-38h1z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#3164fa"
}), /*#__PURE__*/_jsx("path", {
d: "M877 161C379 261 0 709 0 1250c0 684 578 1250 1292 1250 533 0 976-326 1208-762-308 73-677-57-679-341-111 57-271 108-474 108-214 0-433-62-600-184-168-122-282-306-282-547 0-194 87-344 195-453 62-62 148-121 218-161l-1 1zM2253 602c-7-31-15-61-25-88 134 100 238 236 229 427-13 274-178 382-284 399 51-85 8-139-8-157-8-9-25-23-54-33 14-16 30-35 46-57 39-55 78-131 99-222 21-92 16-187-2-269h-1z",
fill: "#3164fa"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
export const AntColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ant-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AntColorful.displayName = 'AntColorful';