@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.33 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SafeHome3Icon = ({
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: "M3 11.996c0-1.745.725-3.4 1.979-4.516l3.5-3.117c2.04-1.817 5.002-1.817 7.042 0l3.5 3.117C20.275 8.597 21 10.251 21 11.996v3.125C21 18.368 18.538 21 15.5 21h-7C5.462 21 3 18.368 3 15.121z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.784 13.526c.403-1.117.142-3.03.016-3.774a.88.88 0 0 0-.324-.55c-1.092-.916-2.028-1.2-3.461-1.202-1.44-.003-2.35.32-3.481 1.201l-.032.026a.88.88 0 0 0-.317.543c-.127.744-.372 2.587.06 3.755.352.95.671 1.488 1.414 2.163.768.697 1.327 1.2 2.356 1.2s1.588-.503 2.356-1.2c.743-.675 1.07-1.21 1.413-2.163Z",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M12 12v.5",
opacity: 0.4
}));
const ForwardRef = forwardRef(SafeHome3Icon);
module.exports = ForwardRef;