@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 929 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const HouseIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M9 21v-4a3 3 0 1 1 6 0v4",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "M3 11.824V17a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4v-5.176a4 4 0 0 0-1.377-3.02l-5-4.344a4 4 0 0 0-5.246 0l-5 4.344A4 4 0 0 0 3 11.824Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 6V4a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v4",
opacity: 0.4
}));
const ForwardRef = forwardRef(HouseIcon);
export default ForwardRef;