@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.61 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 StyledHouseRegular = ({
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.6458 10.5708C24.0667 10.9292 24.1208 11.5583 23.7625 11.9792C23.4042 12.4 22.775 12.4542 22.3542 12.0958L21.3333 11.2292V19C21.3333 20.8417 19.8417 22.3333 18 22.3333H6.00001C4.15918 22.3333 2.66668 20.8417 2.66668 19V11.2292L1.6471 12.0958C1.22585 12.4542 0.595015 12.4 0.237515 11.9792C-0.119818 11.5583 -0.068068 10.9292 0.353057 10.5708L11.3542 1.2375C11.725 0.920833 12.275 0.920833 12.6458 1.2375L23.6458 10.5708ZM6.00001 20.3333H8.00001V14C8.00001 13.0792 8.74585 12.3333 9.66668 12.3333H14.3333C15.2542 12.3333 16 13.0792 16 14V20.3333H18C18.7375 20.3333 19.3333 19.7375 19.3333 19V9.53333L12 3.31125L4.66668 9.53333V19C4.66668 19.7375 5.26251 20.3333 6.00001 20.3333ZM10 20.3333H14V14.3333H10V20.3333Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledHouseRegular);
const HouseRegular = /*#__PURE__*/memo(ForwardRef);
export default HouseRegular;