@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 5.78 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: "M977.184 627.6c-64.051 256.924-324.274 413.282-581.227 349.213C139.11 912.761-17.25 652.523 46.83 395.621c64.025-256.952 324.246-413.322 581.12-349.27 256.936 64.052 413.286 324.318 349.226 581.255l.005-.006h.003z",
fill: "#F7931A"
}), /*#__PURE__*/_jsx("path", {
d: "M723.477 443.257c9.546-63.823-39.044-98.13-105.488-121.017l21.555-86.452-52.627-13.113-20.982 84.176c-13.835-3.45-28.043-6.701-42.165-9.925l21.135-84.733-52.594-13.112-21.566 86.425c-11.449-2.607-22.693-5.184-33.605-7.898l.062-.271-72.573-18.123-14 56.208s39.045 8.95 38.223 9.5c21.31 5.32 25.164 19.427 24.524 30.608l-24.553 98.492c1.467.371 3.372.91 5.471 1.755-1.756-.436-3.624-.912-5.563-1.377l-34.414 137.973c-2.605 6.475-9.216 16.19-24.115 12.502.528.763-38.25-9.546-38.25-9.546l-26.127 60.241 68.485 17.072c12.74 3.195 25.225 6.538 37.52 9.682l-21.777 87.444 52.566 13.113 21.566-86.516a2004.2 2004.2 0 0 0 41.94 10.883l-21.495 86.11 52.63 13.112 21.775-87.28c89.74 16.984 157.216 10.136 185.618-71.033 22.887-65.351-1.14-103.045-48.35-127.627 34.386-7.93 60.287-30.546 67.193-77.265l-.016-.012-.003.004zM603.238 611.863c-16.265 65.352-126.296 30.025-161.97 21.166l28.9-115.849c35.672 8.905 150.067 26.529 133.072 94.683h-.003zm16.275-169.553c-14.835 59.443-106.416 29.244-136.123 21.838l26.2-105.068c29.708 7.405 125.378 21.227 109.927 83.23h-.004z",
fill: "#FFF"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BitcoinCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bitcoin-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BitcoinCircleColorful.displayName = 'BitcoinCircleColorful';