@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
38 lines (37 loc) • 1.49 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { Svg, Path } from 'react-native-svg';
import { genOutlineIcon } from "./gen";
var ThermometerOutline = genOutlineIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 24 24",
fill: "none",
width: size,
height: size
}), /*#__PURE__*/React.createElement(Path, {
d: "M6 13V5a3 3 0 1 1 6 0v8a5 5 0 1 1-6 0Z",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement(Path, {
d: "M9 8.5V15",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement(Path, {
d: "M9 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement(Path, {
d: "M15.5 12h4m-4-4h4m-4-4h4",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinecap: "round"
}));
});
export default ThermometerOutline;