mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-24 01:36:10 +01:00
31 lines
No EOL
1.3 KiB
XML
31 lines
No EOL
1.3 KiB
XML
var _circle, _ellipse, _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 SvgUserCircleOutline = (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), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
|
|
cx: 14,
|
|
cy: 14,
|
|
r: 11,
|
|
stroke: "currentColor",
|
|
strokeWidth: 1.6
|
|
})), _ellipse || (_ellipse = /*#__PURE__*/React.createElement("ellipse", {
|
|
cx: 14,
|
|
cy: 11.5,
|
|
rx: 4,
|
|
ry: 4.5,
|
|
fill: "currentColor"
|
|
})), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
clipRule: "evenodd",
|
|
d: "M5.875 21.416C7.323 19.396 10.417 18 14 18c3.582 0 6.676 1.395 8.124 3.416A10.971 10.971 0 0 1 14 25a10.971 10.971 0 0 1-8.125-3.584Z",
|
|
fill: "currentColor"
|
|
})));
|
|
const ForwardRef = /*#__PURE__*/forwardRef(SvgUserCircleOutline);
|
|
export { ForwardRef as ReactComponent }; |