@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 969 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Login2Icon = ({
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: "M9.473 4.054c0-.425.161-1.002.703-1.32 1.004-.59 2.414-.486 3.291.36l5.982 5.77c1.725 1.664 1.737 4.68.025 6.357l-5.654 5.54c-1.018.999-2.488 1.158-3.656.413-.51-.326-.691-.882-.691-1.336V12.75h4.272l-2.275 2.276a.75.75 0 0 0 1.06 1.06l2.927-2.927c.64-.64.64-1.677 0-2.317L12.53 7.915a.75.75 0 1 0-1.06 1.06l2.275 2.275H9.473zm0 7.196H4a.75.75 0 0 0 0 1.5h5.473z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(Login2Icon);
export default ForwardRef;