@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 5 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: "M1252 1497c384 318 786 435 1016 476-226 319-596 527-1017 527s-791-209-1017-527c233-41 634-158 1017-476h2-1zm-2-113s-243 202-705 291c-185 34-342 31-466 10-51-140-79-288-79-435C0 579 531 27 1195 0l-69 295 123-92 123 92-69-295c664 27 1195 579 1195 1250 0 154-27 301-79 435-123 21-281 24-466-10-462-89-705-291-705-291h2zm-534-154c-353 45-634-79-634-79l308 277 209 188s-38-123 27-188c164-17 397-82 623-257 229 174 459 236 624 253 65 65 27 188 27 188l209-185 308-277s-284 123-634 79c-321-40-521-178-534-188v-1h-1c-13 7-210 145-534 188l2 2zm805-473c65 21 79 144 79 144l312-271s-195 34-380 10c-172-24-277-136-281-140-4 4-106 120-277 140-185 24-380-10-380-10l312 271c0 3 14-120 75-140 89-24 188-68 270-147 79 79 185 120 271 144l-1-1zm154 305c103 27 113 140 113 140l130-120 212-195s-247 72-500 38c-235-30-375-172-380-178-5 5-145 148-380 178-253 34-500-38-500-38l212 195 130 120s10-113 113-140c123-27 281-82 424-198 147 116 302 171 425 198h1zm-284-565c58 34 123 110 123 110l226-205s-178 21-291-27c-131-54-196-127-199-130-3 3-68 83-199 137-113 45-291 27-291 27l226 202c0-3 65-75 123-113 48-24 99-65 140-120 41 62 93 96 140 120l2-1zm-271 1271c-72 72-72 188 0 260 17 17 41 31 62 41v281h137v-281c24-10 45-24 62-41 72-72 72-188 0-260-69-72-188-72-260 0h-1z",
fill: "#a40b5d"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
export const TemCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tem-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TemCircleColorful.displayName = 'TemCircleColorful';