aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/cloud-data-connection.js
blob: 32a996c4a76b2e22466ba869a058b897a0e6c4ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconCloudDataConnection({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cloud-data-connection" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><desc>{"Download more icon variants from https://tabler-icons.io/i/cloud-data-connection"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M5 9.897c0 -1.714 1.46 -3.104 3.26 -3.104c.275 -1.22 1.255 -2.215 2.572 -2.611c1.317 -.397 2.77 -.134 3.811 .69c1.042 .822 1.514 2.08 1.239 3.3h.693a2.42 2.42 0 0 1 2.425 2.414a2.42 2.42 0 0 1 -2.425 2.414h-8.315c-1.8 0 -3.26 -1.39 -3.26 -3.103z" /><path d="M12 13v3" /><circle cx={12} cy={18} r={2} /><path d="M14 18h7" /><path d="M3 18h7" /></svg>;
}

export default IconCloudDataConnection;