@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.01 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledUserUnlockRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M8.4 11.6C11.0509 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0509 2 8.4 2C5.74913 2 3.6 4.14913 3.6 6.8C3.6 9.45125 5.74875 11.6 8.4 11.6ZM8.4 3.8C10.0541 3.8 11.4 5.14588 11.4 6.8C11.4 8.45413 10.0541 9.8 8.4 9.8C6.74588 9.8 5.4 8.45375 5.4 6.8C5.4 5.14588 6.74625 3.8 8.4 3.8ZM22.2 12.8H17.4V9.8C17.4 9.13925 17.9393 8.6 18.6 8.6C19.2608 8.6 19.8 9.13925 19.8 9.8V10.4H21.6V9.97625C21.6 8.40725 20.4739 6.97475 18.9128 6.81612C18.8076 6.80543 18.7031 6.80027 18.6002 6.80027C16.9463 6.76625 15.6 8.14625 15.6 9.8V12.8H15C14.01 12.8 13.2 13.61 13.2 14.6V19.4C13.2 20.39 14.01 21.2 15 21.2H22.2C23.19 21.2 24 20.39 24 19.4V14.6C24 13.61 23.19 12.8 22.2 12.8ZM18.6 18.2C17.9393 18.2 17.4 17.6608 17.4 17C17.4 16.3393 17.9393 15.8 18.6 15.8C19.2608 15.8 19.8 16.3393 19.8 17C19.8 17.6608 19.26 18.2 18.6 18.2ZM12 19.4C12 20.078 12.2346 20.6971 12.6154 21.2H1.2C0.537375 21.2 0 20.6626 0 20C0 16.355 2.955 13.4 6.6 13.4H10.2C10.8784 13.4 11.5328 13.503 12.1489 13.6932C12.0563 13.9812 12 14.2813 12 14.6V15.557C11.4413 15.3313 10.8038 15.2 10.2 15.2H6.6C4.1565 15.2 2.13375 17.0356 1.8375 19.4H12Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserUnlockRegular);
const UserUnlockRegular = /*#__PURE__*/memo(ForwardRef);
export default UserUnlockRegular;