mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-03-31 04:47:21 +02:00
19 lines
No EOL
908 B
XML
19 lines
No EOL
908 B
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 SvgClearMaterial = (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: "m6 6 16 16M6 22 22 6",
|
|
stroke: "currentColor",
|
|
strokeWidth: 1.8,
|
|
strokeLinecap: "round"
|
|
})));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgClearMaterial);
|
|
export { ForwardRef as ReactComponent }; |