mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-09 03:53:42 +01:00
24 lines
No EOL
1.2 KiB
XML
24 lines
No EOL
1.2 KiB
XML
var _rect, _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 SvgTonSpaceRounded = (props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
width: 30,
|
|
height: 30,
|
|
viewBox: "0 0 30 30",
|
|
fill: "none",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
ref: ref
|
|
}, props), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
|
width: 30,
|
|
height: 30,
|
|
rx: 7,
|
|
fill: "#000"
|
|
})), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
d: "m15 23.12 6.927-11.638c.679-1.14 1.018-1.71.974-2.18a1.44 1.44 0 0 0-.583-1.024C21.938 8 21.274 8 19.948 8H15m0 15.12L8.073 11.481c-.679-1.14-1.018-1.71-.973-2.18a1.44 1.44 0 0 1 .582-1.024C8.062 8 8.725 8 10.052 8H15m0 15.12V8",
|
|
stroke: "#fff",
|
|
strokeWidth: 1.8,
|
|
strokeLinejoin: "round"
|
|
})));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgTonSpaceRounded);
|
|
export { ForwardRef as ReactComponent }; |