mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-12-02 04:57:08 +01:00
31 lines
No EOL
1.6 KiB
XML
31 lines
No EOL
1.6 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 SvgPrivacy = (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), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
clipPath: "url(#a)"
|
|
}, /*#__PURE__*/React.createElement("rect", {
|
|
width: 30,
|
|
height: 30,
|
|
rx: 7,
|
|
fill: "#8E8E93"
|
|
}), /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
clipRule: "evenodd",
|
|
d: "M15 4.335A5.665 5.665 0 0 0 9.335 10v3.363a4 4 0 0 0-2.03 2.106C7 16.204 7 17.136 7 19s0 2.796.304 3.53a4 4 0 0 0 2.165 2.165C10.204 25 11.136 25 13 25h4c1.864 0 2.796 0 3.53-.305a4 4 0 0 0 2.165-2.164C23 21.796 23 20.864 23 19s0-2.796-.305-3.53a4 4 0 0 0-2.03-2.107V10A5.665 5.665 0 0 0 15 4.335Zm4.335 8.714V10a4.335 4.335 0 1 0-8.67 0v3.05C11.246 13 11.985 13 13 13h4c1.015 0 1.754 0 2.335.05Z",
|
|
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(SvgPrivacy);
|
|
export { ForwardRef as ReactComponent }; |