@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 927 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Login2Icon = ({
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: "m12 8.444 2.927 2.927a.89.89 0 0 1 0 1.257L12 15.555M4 12h10.667"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M10.222 20.275c.904.837 2.19.816 3.073-.049l5.654-5.541c1.41-1.382 1.4-3.91-.02-5.281l-5.983-5.77c-.72-.694-2.01-.7-2.724 0"
}));
const ForwardRef = forwardRef(Login2Icon);
module.exports = ForwardRef;