@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.72 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 StyledUserRobotRegular = ({
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: "M11.75 8.25C11.75 9.07969 11.0797 9.75 10.25 9.75C9.42031 9.75 8.75 9.07969 8.75 8.25C8.75 7.42031 9.42031 6.75 10.25 6.75C11.0797 6.75 11.75 7.42031 11.75 8.25ZM13.25 8.25C13.25 7.42031 13.9203 6.75 14.75 6.75C15.5797 6.75 16.25 7.42031 16.25 8.25C16.25 9.07969 15.5797 9.75 14.75 9.75C13.9203 9.75 13.25 9.07969 13.25 8.25ZM13.25 3H16.25C18.3219 3 20 4.67906 20 6.75V11.25C20 13.3219 18.3219 15 16.25 15H8.75C6.67906 15 5 13.3219 5 11.25V6.75C5 4.67906 6.67906 3 8.75 3H11.75V0.75C11.75 0.335812 12.0875 0 12.5 0C12.9125 0 13.25 0.335812 13.25 0.75V3ZM17.75 6.75C17.75 5.92031 17.0797 5.25 16.25 5.25H8.75C7.92031 5.25 7.25 5.92031 7.25 6.75V11.25C7.25 12.0797 7.92031 12.75 8.75 12.75V12C8.75 11.5875 9.0875 11.25 9.5 11.25C9.9125 11.25 10.25 11.5875 10.25 12V12.75H11.75V12C11.75 11.5875 12.0875 11.25 12.5 11.25C12.9125 11.25 13.25 11.5875 13.25 12V12.75H14.75V12C14.75 11.5875 15.0875 11.25 15.5 11.25C15.9125 11.25 16.25 11.5875 16.25 12V12.75C17.0797 12.75 17.75 12.0797 17.75 11.25V6.75ZM4.25 24C3.00734 24 2 22.9922 2 21.75V21C2 18.4734 4.01469 16.5 6.5 16.5H18.5C20.9844 16.5 23 18.4734 23 21V21.75C23 22.9922 21.9922 24 20.75 24H4.25ZM20.75 21C20.75 19.7578 19.7422 18.75 18.5 18.75H6.5C5.25734 18.75 4.25 19.7578 4.25 21V21.75H8.75V20.25C8.75 19.8375 9.0875 19.5 9.5 19.5C9.9125 19.5 10.25 19.8375 10.25 20.25V21.75H11.75V20.25C11.75 19.8375 12.0875 19.5 12.5 19.5C12.9125 19.5 13.25 19.8375 13.25 20.25V21.75H14.75V20.25C14.75 19.8375 15.0875 19.5 15.5 19.5C15.9125 19.5 16.25 19.8375 16.25 20.25V21.75H20.75V21ZM3.5 6.75V11.25C3.5 11.6625 3.16438 12 2.75 12C2.33581 12 2 11.6625 2 11.25V6.75C2 6.3375 2.33581 6 2.75 6C3.16438 6 3.5 6.3375 3.5 6.75ZM23 11.25C23 11.6625 22.6625 12 22.25 12C21.8375 12 21.5 11.6625 21.5 11.25V6.75C21.5 6.3375 21.8375 6 22.25 6C22.6625 6 23 6.3375 23 6.75V11.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserRobotRegular);
const UserRobotRegular = /*#__PURE__*/memo(ForwardRef);
export default UserRobotRegular;