UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.75 kB
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 StyledUserLockSolid = ({ 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: "M22.2 12.8H21.6V9.97625C21.6 8.40725 20.4739 6.97475 18.9128 6.81612C17.1187 6.635 15.6 8.04125 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.2ZM19.8 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.8V12.8ZM8.4 11.6C11.0513 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0513 2 8.4 2C5.74875 2 3.6 4.14913 3.6 6.8C3.6 9.45088 5.74875 11.6 8.4 11.6ZM12 14.6C12 14.2748 12.0652 13.9674 12.1614 13.6737C11.5725 13.4975 10.9463 13.4 10.3013 13.4H6.49875C2.91038 13.4 0 16.3138 0 19.9025C0 20.6187 0.582 21.2 1.29975 21.2H12.6135C12.2362 20.6975 12 20.0788 12 19.4V14.6Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserLockSolid); const UserLockSolid = /*#__PURE__*/memo(ForwardRef); export default UserLockSolid;