@ant-design/web3-icons
Version:
A collection of Web3 icons.
34 lines • 4.64 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: "M774.62 443.02c10.986-73.973-44.928-113.739-121.385-140.267l24.802-100.207-60.555-15.202-24.146 97.566c-15.918-3.995-32.268-7.765-48.515-11.5l24.318-98.21-60.52-15.2L483.8 260.172c-13.177-3.023-26.113-6.01-38.668-9.156l.07-.312-83.51-21.004-16.11 65.148s44.929 10.37 43.98 11.014c24.526 6.167 28.957 22.515 28.216 35.475l-28.25 114.158c1.69.434 3.88 1.059 6.295 2.032-2.018-.503-4.175-1.06-6.399-1.598l-39.599 159.917c-3 7.505-10.607 18.763-27.75 14.488.603.887-44.015-11.065-44.015-11.065L248 689.09l78.801 19.788c14.66 3.7 29.027 7.574 43.169 11.222l-25.06 101.354 60.486 15.2 24.818-100.276a2283.394 2283.394 0 0 0 48.258 12.613L453.739 848.8 514.293 864l25.06-101.162c103.258 19.683 180.905 11.744 213.588-82.33 26.336-75.747-1.312-119.438-55.64-147.93 39.565-9.19 69.367-35.406 77.32-89.557ZM636.264 638.449c-18.712 75.746-145.323 34.798-186.371 24.53l33.253-134.274c41.048 10.32 172.676 30.75 153.118 109.744Zm18.73-196.522c-17.074 68.9-122.453 33.895-156.637 25.312l30.148-121.783c34.184 8.583 144.27 24.6 126.49 96.471Z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BitcoinFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bitcoin-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BitcoinFilled.displayName = 'BitcoinFilled';