@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 920 B
JavaScript
import * as React from "react";
function HomeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M4.199 6.978C2.806 8.218 2 10.058 2 11.996v3.472C2 19.076 4.736 22 8.111 22h7.778C19.264 22 22 19.076 22 15.468v-3.472c0-1.939-.806-3.777-2.199-5.018l-3.889-3.464c-2.266-2.019-5.558-2.019-7.824 0zm5.217 11.646a4.66 4.66 0 0 1 5.168 0 .75.75 0 1 0 .832-1.248 6.16 6.16 0 0 0-6.832 0 .75.75 0 1 0 .832 1.248",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(HomeIcon);
export default ForwardRef;