cloud drizzle icon
Free cloud drizzle 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="M17.5 13a4.2 4.2 0 0 0 .4-8.3 5.6 5.6 0 0 0-10.7-1.5A3.8 3.8 0 0 0 7 10.5"/>
<line x1="8" y1="15" x2="8" y2="17"/>
<line x1="8" y1="19" x2="8" y2="21"/>
<line x1="12" y1="15" x2="12" y2="17"/>
<line x1="12" y1="19" x2="12" y2="21"/>
<line x1="16" y1="15" x2="16" y2="17"/>
<line x1="16" y1="19" x2="16" y2="21"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/cloud-drizzle.svg"
width="24" height="24" alt="cloud drizzle icon">
<!-- …or paste the raw SVG from the SVG tab -->import { CloudDrizzleIcon } from "@softicons/react";
export default function Example() {
return <CloudDrizzleIcon size={24} strokeWidth={2} />;
}<script setup>
import { CloudDrizzleIcon } from "@softicons/vue";
</script>
<template>
<CloudDrizzleIcon :size="24" :stroke-width="2" />
</template>import { CloudDrizzleIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [CloudDrizzleIconComponent],
template: `<cloud-drizzle-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}