UNPKG

@astraicons/react

Version:

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

22 lines 903 B
import * as React from "react"; import { forwardRef } from "react"; const HomeIcon = ({ 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", { fillRule: "evenodd", d: "M16.02 3.803c-2.324-2.07-5.716-2.07-8.04 0l-3.5 3.118c-1.42 1.265-2.23 3.127-2.23 5.076v3.125c0 3.613 2.752 6.629 6.25 6.629h7c3.498 0 6.25-3.016 6.25-6.629v-3.125c0-1.95-.81-3.81-2.23-5.076zM9.416 18.625a4.66 4.66 0 0 1 5.168 0 .75.75 0 0 0 .832-1.248 6.16 6.16 0 0 0-6.832 0 .75.75 0 0 0 .832 1.248", clipRule: "evenodd" })); const ForwardRef = forwardRef(HomeIcon); export default ForwardRef;