waves icon
Free waves 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="M2 6c2 0 2 1.5 4 1.5S8 6 10 6s2 1.5 4 1.5S16 6 18 6s2 1.5 4 1.5"/>
<path d="M2 12c2 0 2 1.5 4 1.5S8 12 10 12s2 1.5 4 1.5 2-1.5 4-1.5 2 1.5 4 1.5"/>
<path d="M2 18c2 0 2 1.5 4 1.5S8 18 10 18s2 1.5 4 1.5 2-1.5 4-1.5 2 1.5 4 1.5"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/waves.svg"
width="24" height="24" alt="waves icon">
<!-- …or paste the raw SVG from the SVG tab -->import { WavesIcon } from "@softicons/react";
export default function Example() {
return <WavesIcon size={24} strokeWidth={2} />;
}<script setup>
import { WavesIcon } from "@softicons/vue";
</script>
<template>
<WavesIcon :size="24" :stroke-width="2" />
</template>import { WavesIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [WavesIconComponent],
template: `<waves-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}