UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.83 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 StyledHouseSolid = ({ 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: "M23.9917 10.6458C23.9917 11.3958 23.3667 11.9833 22.6583 11.9833H21.325L21.3542 18.6542C21.3542 18.7708 21.3458 18.8792 21.3333 18.9917V19.6667C21.3333 20.5875 20.5875 21.3333 19.6667 21.3333H19C18.9542 21.3333 18.9083 21.2958 18.8625 21.3292C18.8042 21.2958 18.7458 21.3333 18.6875 21.3333H16.3333C15.4125 21.3333 14.6667 20.5875 14.6667 19.6667V16C14.6667 15.2625 14.0708 14.6667 13.3333 14.6667H10.6667C9.92917 14.6667 9.33333 15.2625 9.33333 16V19.6667C9.33333 20.5875 8.5875 21.3333 7.66667 21.3333H5.3375C5.275 21.3333 5.2125 21.3292 5.15 21.325C5.1 21.3292 5.05 21.3333 5 21.3333H4.33333C3.41292 21.3333 2.66667 20.5875 2.66667 19.6667V15C2.66667 14.9625 2.66792 14.9208 2.67042 14.8833V11.9833H1.33542C0.584167 11.9833 0 11.3958 0 10.6458C0 10.2708 0.125167 9.9375 0.417083 9.64583L11.1 0.334C11.3917 0.04175 11.725 0 12.0167 0C12.3083 0 12.6417 0.0835 12.8958 0.29225L23.5333 9.64583C23.8667 9.9375 24.0375 10.2708 23.9917 10.6458Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledHouseSolid); const HouseSolid = /*#__PURE__*/memo(ForwardRef); export default HouseSolid;