@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.35 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SoilTemperaturesIcon = ({
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", {
strokeLinecap: "round",
d: "M3 15.99h5m8 0h5M12 16.995v-7.66M11.983 3.256a2.75 2.75 0 0 1 2.767 2.75v7.243c0 .149.055.338.191.616.067.136.142.27.227.428.081.15.173.321.252.497a3.75 3.75 0 1 1-6.812-.061c.077-.163.166-.323.244-.464.082-.148.154-.276.217-.404.132-.264.181-.437.181-.565v-7.29a2.75 2.75 0 0 1 2.733-2.75ZM19.5 4.829h-2m2 4h-2m2 4h-2"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M21 19.996c-.477.715-1.085 1.029-1.925.994-.777-.033-.966-1.019-1.744-.994-.737.023-.89.922-1.624.994-.879.086-1.14-1.04-2.021-.994-.915-.004-1.085 1.029-1.925.994-.777-.033-.967-1.019-1.744-.994-.737.023-.89.922-1.625.994-.878.086-1.163-1.04-2.045-.994-.797.041-1.006.983-1.804.994C3.744 21 3 19.995 3 19.995"
}));
const ForwardRef = forwardRef(SoilTemperaturesIcon);
export default ForwardRef;