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

function IconCloudLock({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-cloud-lock" 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-lock"}</desc><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M19 18a3.5 3.5 0 0 0 0 -7h-1c.397 -1.768 -.285 -3.593 -1.788 -4.787c-1.503 -1.193 -3.6 -1.575 -5.5 -1s-3.315 2.019 -3.712 3.787c-2.199 -.088 -4.155 1.326 -4.666 3.373c-.512 2.047 .564 4.154 2.566 5.027" /><rect x={8} y={15} width={8} height={5} rx={1} /><path d="M10 15v-2a2 2 0 1 1 4 0v2" /></svg>;
}

export default IconCloudLock;