mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-09 11:54:22 +01:00
17 lines
No EOL
1.3 KiB
XML
17 lines
No EOL
1.3 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 SvgTelegram = (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", {
|
|
d: "M3.012 13.733c5.907-2.573 9.845-4.27 11.813-5.09 5.629-2.34 6.797-2.746 7.56-2.76.167-.002.54.04.784.237.203.166.26.39.289.548.025.158.06.517.031.797-.303 3.204-1.623 10.977-2.295 14.566-.281 1.518-.842 2.027-1.383 2.076-1.177.109-2.07-.777-3.21-1.524-1.782-1.169-2.788-1.896-4.52-3.037-2-1.318-.703-2.042.437-3.226.297-.31 5.482-5.025 5.58-5.453.013-.053.026-.253-.094-.358-.117-.105-.292-.069-.418-.04-.18.04-3.026 1.923-8.547 5.648-.807.555-1.538.825-2.197.811-.721-.015-2.114-.409-3.15-.745-1.265-.412-2.275-.63-2.187-1.331.045-.365.548-.738 1.507-1.12Z",
|
|
fill: "#fff"
|
|
})));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgTelegram);
|
|
export { ForwardRef as ReactComponent }; |