softicons.dev

sun snow icon

Free sun snow 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="M10 21v-2"/>
  <path d="M10 5V3"/>
  <path d="m4.6 8.6-.7-.7"/>
  <path d="M3 12h2"/>
  <path d="m4.6 15.4-.7.7"/>
  <circle cx="10" cy="12" r="3"/>
  <path d="M16 12h6"/>
  <path d="M19 9v6"/>
  <path d="m16.5 10.5 5 3"/>
  <path d="m16.5 13.5 5-3"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/sun-snow.svg"
     width="24" height="24" alt="sun snow icon">

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

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

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

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