@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 5.35 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: "M780.464 435.763c12.232-81.75-50.034-125.693-135.179-155.008l27.622-110.737-67.44-16.797-26.888 107.822c-17.729-4.42-35.936-8.585-54.032-12.713l27.084-108.533L484.234 123l-27.637 110.701c-14.67-3.339-29.08-6.639-43.061-10.116l.078-.348-93-23.213-17.94 71.997s50.034 11.464 48.98 12.17c27.31 6.812 32.248 24.882 31.427 39.205L351.618 449.55c1.88.478 4.32 1.168 7.011 2.25-2.25-.56-4.644-1.169-7.128-1.763L307.4 626.764c-3.338 8.293-11.809 20.739-30.902 16.013.676.978-49.016-12.227-49.016-12.227L194 707.712l87.76 21.868c16.327 4.092 32.326 8.374 48.082 12.4l-27.907 112.008 67.361 16.797 27.637-110.819c18.402 4.994 36.26 9.6 53.744 13.942l-27.544 110.295L490.575 901l27.904-111.797c114.998 21.754 201.467 12.983 237.863-90.986 29.328-83.707-1.46-131.99-61.96-163.475 44.065-10.158 77.256-39.127 86.106-98.97l-.021-.015-.003.006ZM626.202 651.075c-20.866 83.56-162.033 38.39-207.802 27.063l37.077-148.129c45.765 11.387 192.533 33.921 170.728 121.066h-.003Zm20.446-216.403c-18.991 75.967-136.22 37.372-174.248 27.908l33.539-134.274c38.028 9.463 160.493 27.127 140.715 106.366h-.006Z",
fill: "#F7931A",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BitcoinColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bitcoin-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BitcoinColorful.displayName = 'BitcoinColorful';