mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-24 09:46:10 +01:00
39 lines
No EOL
1.4 KiB
XML
39 lines
No EOL
1.4 KiB
XML
var _g, _defs;
|
|
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 SvgLevels = (props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
fill: "none",
|
|
viewBox: "0 0 30 30",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
ref: ref
|
|
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
clipPath: "url(#a)"
|
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
width: 30,
|
|
height: 30,
|
|
rx: 7,
|
|
fill: "#8E8E93"
|
|
}), /*#__PURE__*/React.createElement("circle", {
|
|
cx: 20.5,
|
|
cy: 14.5,
|
|
r: 3.5,
|
|
fill: "#fff"
|
|
}), /*#__PURE__*/React.createElement("circle", {
|
|
cx: 10.5,
|
|
cy: 20.5,
|
|
r: 3.5,
|
|
fill: "#fff"
|
|
}), /*#__PURE__*/React.createElement("circle", {
|
|
cx: 10.5,
|
|
cy: 9.5,
|
|
r: 3.5,
|
|
fill: "#fff"
|
|
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
id: "a"
|
|
}, /*#__PURE__*/React.createElement("path", {
|
|
fill: "#fff",
|
|
d: "M0 0h30v30H0z"
|
|
})))));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgLevels);
|
|
export { ForwardRef as ReactComponent }; |