@wellness-icons/react
Version:
92 lines • 2.64 kB
JavaScript
import * as React from "react";
function CampingIcon({
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 15.296h-10.356a.84.84 0 0 1-.841-.84V6.019a6.019 6.019 0 0 1 12.037 0v8.437a.84.84 0 0 1-.84.84",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(.32588 0 0 .32588 13.696 15.224)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0-13.31V0h-44.56v-13.31",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(.32588 0 0 .32588 19.269 20.209)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-12.559-12.559h25.118",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(0 .32588 .32588 0 16.093 10.937)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-49.245-23.606h60.56",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(-.2041 .25404 .25404 .2041 10.39 21.12)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-4.752-4.752h9.504",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(0 .32588 .32588 0 3.549 18.66)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-11.315-23.606h60.56",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(.2041 .25404 .25404 -.2041 17.863 1.848)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-4.752-4.752h9.504",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.07px"
},
transform: "matrix(0 .32588 .32588 0 23.549 18.66)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CampingIcon);
export default ForwardRef;