UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 801 B
import * as React from "react"; function ThermometerWarmIcon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 9a4 4 0 00-2 7.5M12 3v2M6.6 18.4l-1.4 1.4M4 13H2m4.6-5.4L5.2 6.2M20 14.535V4a2 2 0 10-4 0v10.535a4 4 0 104 0z" })); } const ForwardRef = React.forwardRef(ThermometerWarmIcon); export default ForwardRef;