UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

26 lines 1.02 kB
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", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M8.885 3.894a4.75 4.75 0 0 1 6.23 0l5 4.344a4.75 4.75 0 0 1 1.635 3.586V17A4.75 4.75 0 0 1 17 21.75h-1.25V17a3.75 3.75 0 0 0-7.5 0v4.75H7A4.75 4.75 0 0 1 2.25 17v-5.176c0-1.375.596-2.684 1.635-3.586z" }), /*#__PURE__*/React.createElement("path", { d: "M12 14.75A2.25 2.25 0 0 1 14.25 17v4.75h-4.5V17A2.25 2.25 0 0 1 12 14.75" }), /*#__PURE__*/React.createElement("path", { stroke: "#4e5964", strokeWidth: 1.425, d: "M16 6V4a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v4" })); const ForwardRef = forwardRef(HouseIcon); export default ForwardRef;