@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 839 B
JavaScript
import * as React from "react";
function CloudOffIcon({
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: "M21.7 16.118a4.5 4.5 0 00-3.78-6.099 6.002 6.002 0 00-7.22-4.878M7.287 7.286a5.973 5.973 0 00-1.207 2.733A4.5 4.5 0 006.5 19h11c.456 0 .896-.068 1.311-.194M3 3l18 18"
}));
}
const ForwardRef = React.forwardRef(CloudOffIcon);
export default ForwardRef;