@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.19 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const PrivateIncognitoIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M6.753 12.252a4.5 4.5 0 1 0 4.387 3.5h1.723a4.5 4.5 0 1 0 .647-1.5h-3.016a4.5 4.5 0 0 0-3.741-2m10.4 2.899a.75.75 0 0 1 .918-.533 2.124 2.124 0 0 1 1.51 2.596.75.75 0 1 1-1.45-.383.624.624 0 0 0-.444-.763.75.75 0 0 1-.533-.917",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.349 10.251H3.004a.75.75 0 0 0 0 1.5h1.142v.004h16.858a.75.75 0 1 0 0-1.5h-1.346l-.666-4.902c-.157-1.155-.74-2.116-1.573-2.654-.85-.549-1.928-.625-2.89-.03l-1.892 1.169c-.406.25-.858.25-1.264 0l-1.892-1.17c-.961-.596-2.039-.52-2.89.029-.832.537-1.416 1.498-1.574 2.653z"
}));
const ForwardRef = forwardRef(PrivateIncognitoIcon);
module.exports = ForwardRef;