@wellness-icons/react
Version:
110 lines • 3.92 kB
JavaScript
const React = require("react");
function OutdoorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
xmlSpace: "preserve",
style: {
fillRule: "evenodd",
clipRule: "evenodd",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10
},
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M0 0h59.533",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(.29387 0 0 .29387 3.482 19.206)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-18.746 18.746h37.492",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(0 -.29387 -.29387 0 21.893 13.698)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-1.502 3.412h9.256",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(.1985 -.2167 -.2167 -.1985 17.567 11.685)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-.912-2.781h9.385",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(.23673 .17411 .17411 -.23673 14.795 11.044)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 15.18c0 5.2-4.622 9.42-10.316 9.42-1.501 0-2.914-.29-4.196-.81-1.073 1.24-2.737 2.03-4.599 2.03-1.873 0-3.537-.8-4.6-2.04a10.9 10.9 0 0 1-4.194.82c-5.696 0-10.318-4.22-10.318-9.42 0-2.7 1.249-5.14 3.243-6.85-1.074-1.34-1.72-2.99-1.72-4.79 0-4.43 3.942-8.02 8.795-8.02.076 0 .153 0 .229.01.92-3.54 4.414-6.17 8.565-6.17s7.644 2.63 8.564 6.17c.077-.01.153-.01.231-.01 4.851 0 8.783 3.59 8.783 8.02 0 1.79-.647 3.44-1.72 4.78C-1.249 10.03 0 12.47 0 15.18",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(.29387 0 0 .29387 22 7.92)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-15.102 15.102h30.204",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(0 -.29387 -.29387 0 11.152 14.768)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-6.507 2.864h7.768",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "scale(-.29387 .29387)rotate(-47.515 30.915 41.1)"
}), /*#__PURE__*/React.createElement("path", {
d: "m-7.112-2.334 7.878.001",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(-.23674 .1741 .1741 .23674 7.394 14.566)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 16.42c-.91 3.49-4.341 6.07-8.42 6.07a9.3 9.3 0 0 1-3.52-.68c-.901 1.04-2.3 1.7-3.861 1.7-1.569 0-2.97-.67-3.859-1.71-1.08.45-2.26.69-3.521.69-4.779 0-8.66-3.54-8.66-7.91 0-2.26 1.051-4.31 2.721-5.75-.901-1.12-1.441-2.51-1.441-4.02 0-3.71 3.311-6.73 7.38-6.73.061 0 .13 0 .191.01.769-2.97 3.71-5.18 7.189-5.18 3.481 0 6.421 2.21 7.191 5.18.059-.01.13-.01.19-.01 4.069 0 7.369 3.02 7.369 6.73 0 1.51-.54 2.89-1.439 4.02.21.18.42.37.599.57",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(.29387 0 0 .29387 11.357 9.193)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(OutdoorIcon);
module.exports = ForwardRef;