mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-24 09:46:10 +01:00
19 lines
No EOL
1.1 KiB
XML
19 lines
No EOL
1.1 KiB
XML
var _path;
|
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
import * as React from "react";
|
|
import { forwardRef } from "react";
|
|
const SvgBuy = (props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
width: 28,
|
|
height: 28,
|
|
viewBox: "0 0 28 28",
|
|
fill: "none",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
ref: ref
|
|
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
clipRule: "evenodd",
|
|
d: "M3 14C3 7.925 7.925 3 14 3s11 4.925 11 11-4.925 11-11 11S3 20.075 3 14Zm11-5.75a.75.75 0 0 1 .75.75v4.25H19a.75.75 0 0 1 0 1.5h-4.25V19a.75.75 0 0 1-1.5 0v-4.25H9a.75.75 0 0 1 0-1.5h4.25V9a.75.75 0 0 1 .75-.75Z",
|
|
fill: "currentColor"
|
|
})));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgBuy);
|
|
export { ForwardRef as ReactComponent }; |