softicons.dev

cloud minus icon

Free cloud minus 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="M16.5 13.5a4.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 6 11.5"/>
  <line x1="9.7" y1="18" x2="14.3" y2="18"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/cloud-minus.svg"
     width="24" height="24" alt="cloud minus icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { CloudMinusIcon } from "@softicons/react";

export default function Example() {
  return <CloudMinusIcon size={24} strokeWidth={2} />;
}
<script setup>
import { CloudMinusIcon } from "@softicons/vue";
</script>

<template>
  <CloudMinusIcon :size="24" :stroke-width="2" />
</template>
import { CloudMinusIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [CloudMinusIconComponent],
  template: `<cloud-minus-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}