cloud x icon
Free cloud x 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="15.7" x2="14.3" y2="20.3"/>
<line x1="14.3" y1="15.7" x2="9.7" y2="20.3"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/cloud-x.svg"
width="24" height="24" alt="cloud x icon">
<!-- …or paste the raw SVG from the SVG tab -->import { CloudXIcon } from "@softicons/react";
export default function Example() {
return <CloudXIcon size={24} strokeWidth={2} />;
}<script setup>
import { CloudXIcon } from "@softicons/vue";
</script>
<template>
<CloudXIcon :size="24" :stroke-width="2" />
</template>import { CloudXIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [CloudXIconComponent],
template: `<cloud-x-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}