wind icon
Free wind 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="M9.6 4.6A2 2 0 1 1 11 8H2"/>
<path d="M12.6 19.4A2 2 0 1 0 14 16H2"/>
<path d="M17.7 7.7A2.5 2.5 0 1 1 19.5 12H2"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/wind.svg"
width="24" height="24" alt="wind icon">
<!-- …or paste the raw SVG from the SVG tab -->import { WindIcon } from "@softicons/react";
export default function Example() {
return <WindIcon size={24} strokeWidth={2} />;
}<script setup>
import { WindIcon } from "@softicons/vue";
</script>
<template>
<WindIcon :size="24" :stroke-width="2" />
</template>import { WindIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [WindIconComponent],
template: `<wind-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}