@wellness-icons/react
Version:
75 lines • 2.47 kB
JavaScript
const React = require("react");
function SolariumIcon({
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("circle", {
cx: -1.888,
cy: -5.167,
r: 5.501,
style: {
fill: "none",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "scale(-.29387 .29387)rotate(-20.067 109.568 53.848)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 4.567 16.586-.235q8.203 2.52 16.407 5.037",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "translate(11.316 11.419)scale(.29387)"
}), /*#__PURE__*/React.createElement("path", {
d: "M-8.978-17.717-5.006-.349A5.286 5.286 0 1 1-15.311 2.01l-2.441-10.672",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "matrix(-.06537 -.2865 -.2865 .06537 7.573 8.24)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0-6.958C-1.085-4.341-2.619-2.292-3.85-1.46-5.621-.263-7.388.111-8.439.245l1.268 2.918A1.285 1.285 0 0 1-8.35 4.96h-50.83a1.284 1.284 0 0 1-1.178-1.797L-59.09.245c-1.076-.055-3.629-.344-5.582-2.202 0 0-1.296-1.241-2.857-5.001a3.4 3.4 0 0 1-.261-1.31c0-1.926 1.69-3.65 3.96-3.65h60.131C-.92-11.918.99-9.346 0-6.958",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "translate(21.922 18.18)scale(.29387)"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 8.393h-68.056l.677-1.583C-65.608 2.67-61.644 0-57.268 0h46.479C-6.412 0-2.447 2.67-.678 6.81z",
style: {
fill: "none",
fillRule: "nonzero",
stroke: "#000",
strokeWidth: "3.4px"
},
transform: "translate(22 4.362)scale(.29387)"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(SolariumIcon);
module.exports = ForwardRef;