@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.76 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 StyledLockKeyholeOpenRegular = ({
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 16.6667C7.44583 16.6667 7 16.2208 7 15.6667C7 15.1125 7.44583 14.6667 8 14.6667H10.6667C11.2208 14.6667 11.6667 15.1125 11.6667 15.6667C11.6667 16.2208 11.2208 16.6667 10.6667 16.6667H8ZM18 3C16.1583 3 14.6667 4.4925 14.6667 6.33333V9H16C17.4708 9 18.6667 10.1958 18.6667 11.6667V19.6667C18.6667 21.1375 17.4708 22.3333 16 22.3333H2.66667C1.19375 22.3333 0 21.1375 0 19.6667V11.6667C0 10.1958 1.19375 9 2.66667 9H12.6667V6.33333C12.6667 3.38792 15.0542 1 18 1C20.9458 1 23.3333 3.38792 23.3333 6.33333V9.33333C23.3333 9.8875 22.8875 10.3333 22.3333 10.3333C21.7792 10.3333 21.3333 9.8875 21.3333 9.33333V6.33333C21.3333 4.4925 19.8417 3 18 3ZM16 11H2.66667C2.29833 11 2 11.3 2 11.6667V19.6667C2 20.0333 2.29833 20.3333 2.66667 20.3333H16C16.3667 20.3333 16.6667 20.0333 16.6667 19.6667V11.6667C16.6667 11.3 16.3667 11 16 11Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLockKeyholeOpenRegular);
const LockKeyholeOpenRegular = /*#__PURE__*/memo(ForwardRef);
export default LockKeyholeOpenRegular;