@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 926 B
JavaScript
const React = require("react");
function Home2Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9 18c.674-3.258 5.326-3.258 6 0"
}), /*#__PURE__*/React.createElement("path", {
d: "M2 11.996c0-1.939.806-3.777 2.199-5.018l3.889-3.464c2.266-2.019 5.558-2.019 7.824 0l3.89 3.464C21.193 8.218 22 10.058 22 11.996v3.472C22 19.076 19.264 22 15.889 22H8.11C4.736 22 2 19.076 2 15.468z"
}));
}
const ForwardRef = React.forwardRef(Home2Icon);
module.exports = ForwardRef;