@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 940 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Logout2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m7.419 16-3.14-3.293a1.035 1.035 0 0 1 0-1.414L7.42 8M16 12H4.559",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M10 20.378c.925.847 2.24.827 3.143-.05l5.782-5.61c1.442-1.399 1.432-3.96-.021-5.347L12.786 3.53c-.736-.704-2.055-.71-2.786 0"
}));
const ForwardRef = forwardRef(Logout2Icon);
export default ForwardRef;