diff options
Diffstat (limited to 'icons-react/icons-js/cloud-data-connection.js')
-rw-r--r-- | icons-react/icons-js/cloud-data-connection.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/cloud-data-connection.js b/icons-react/icons-js/cloud-data-connection.js new file mode 100644 index 00000000..32a996c4 --- /dev/null +++ b/icons-react/icons-js/cloud-data-connection.js @@ -0,0 +1,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;
\ No newline at end of file |