haze icon
Free haze SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons weather set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M5.6 8.6 4.2 7.2"/>
<path d="M12 4V2"/>
<path d="M18.4 8.6l1.4-1.4"/>
<path d="M9 12a3 3 0 0 1 6 0"/>
<line x1="3" y1="16" x2="21" y2="16"/>
<line x1="6" y1="20" x2="18" y2="20"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/haze.svg"
width="24" height="24" alt="haze icon">
<!-- …or paste the raw SVG from the SVG tab -->import { HazeIcon } from "@softicons/react";
export default function Example() {
return <HazeIcon size={24} strokeWidth={2} />;
}<script setup>
import { HazeIcon } from "@softicons/vue";
</script>
<template>
<HazeIcon :size="24" :stroke-width="2" />
</template>import { HazeIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [HazeIconComponent],
template: `<haze-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}