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

function IconDeviceCctv({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg className="icon icon-tabler icon-tabler-device-cctv" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={3} y={3} width={18} height={4} rx={1} /><circle cx={12} cy={14} r={4} /><path d="M19 7v7a7 7 0 0 1 -14 0v-7" /><line x1={12} y1={14} x2={12.01} y2={14} /></svg>;
}

export default IconDeviceCctv;