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

function IconSunWind({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-sun-wind" 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="M14.468 10.005a4 4 0 1 0 -5.466 5.46" /><path d="M2 12h1" /><path d="M11 3v1" /><path d="M11 20v1" /><path d="M4.6 5.6l.7 .7" /><path d="M17.4 5.6l-.7 .7" /><path d="M5.3 17.7l-.7 .7" /><path d="M15 13h5a2 2 0 1 0 0 -4" /><path d="M12 16h5.714l.253 -.004a2.004 2.004 0 0 1 2.033 2.004a2 2 0 0 1 -2 2h-.286" /></svg>;
}

export default IconSunWind;