@nomercyicons/react
Version:
26 lines • 1.61 kB
JavaScript
const React = require("react");
function OnlinePredictionRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2v.5c0 .55.45 1 1 1s1-.45 1-1v-.5zm9-5.5c0-2.46-.89-4.71-2.36-6.45a.759.759 0 00-1.12-.06c-.27.27-.3.71-.06 1A8.444 8.444 0 0120.5 12c0 2.1-.77 4.03-2.04 5.52-.25.29-.21.73.06 1 .32.32.83.28 1.12-.06 1.47-1.75 2.36-4 2.36-6.46zM3.5 12c0-2.1.77-4.03 2.04-5.52.25-.29.21-.73-.06-1a.767.767 0 00-1.12.06C2.89 7.29 2 9.54 2 12s.89 4.71 2.36 6.46c.29.34.8.38 1.12.06.27-.27.3-.71.06-1A8.49 8.49 0 013.5 12zm14 0c0 1.28-.44 2.47-1.18 3.41-.23.29-.2.71.07.98.32.32.85.29 1.13-.07A7.05 7.05 0 0019 12c0-1.63-.56-3.13-1.49-4.31a.755.755 0 00-1.13-.07c-.26.26-.3.68-.07.98.75.93 1.19 2.12 1.19 3.4zm-9.88 4.38c.26-.26.3-.68.07-.98A5.405 5.405 0 016.5 12c0-1.28.44-2.47 1.18-3.41.23-.29.2-.71-.07-.98a.76.76 0 00-1.12.07A6.996 6.996 0 005 12c0 1.63.56 3.13 1.49 4.32.28.35.81.38 1.13.06z"
}));
}
const ForwardRef = React.forwardRef(OnlinePredictionRoundedIcon);
module.exports = ForwardRef;