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

function IconRadar({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-radar" 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" /><path d="M21 12h-8a1 1 0 1 0 -1 1v8a9 9 0 0 0 9 -9" /><path d="M15.999 8.998a5 5 0 1 0 -6.999 7.003" /><path d="M20.486 8.995a9 9 0 1 0 -11.482 11.495" /></svg>;
}

export default IconRadar;