@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.55 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 StyledLockKeyholeRegular = ({
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: "M13.625 18C13.625 18.6234 13.1234 19.125 12.5 19.125C11.8766 19.125 11.375 18.6234 11.375 18V15C11.375 14.3766 11.8766 13.875 12.5 13.875C13.1234 13.875 13.625 14.3766 13.625 15V18ZM12.5 0C15.8141 0 18.5 2.68641 18.5 6V9H20C21.6547 9 23 10.3453 23 12V21C23 22.6547 21.6547 24 20 24H5C3.34297 24 2 22.6547 2 21V12C2 10.3453 3.34297 9 5 9H6.5V6C6.5 2.68641 9.18594 0 12.5 0ZM12.5 2.25C10.4281 2.25 8.75 3.92906 8.75 6V9H16.25V6C16.25 3.92906 14.5719 2.25 12.5 2.25ZM5 11.25C4.58562 11.25 4.25 11.5875 4.25 12V21C4.25 21.4125 4.58562 21.75 5 21.75H20C20.4125 21.75 20.75 21.4125 20.75 21V12C20.75 11.5875 20.4125 11.25 20 11.25H5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLockKeyholeRegular);
const LockKeyholeRegular = /*#__PURE__*/memo(ForwardRef);
export default LockKeyholeRegular;