softicons.dev

sunset icon

Free sunset 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 18a5 5 0 0 0-10 0"/>
  <line x1="12" y1="9" x2="12" y2="2"/>
  <polyline points="8.5 5.5 12 9 15.5 5.5"/>
  <line x1="1" y1="18" x2="4" y2="18"/>
  <line x1="20" y1="18" x2="23" y2="18"/>
  <line x1="3.9" y1="9.9" x2="5.3" y2="11.3"/>
  <line x1="18.7" y1="11.3" x2="20.1" y2="9.9"/>
  <line x1="2" y1="22" x2="22" y2="22"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/sunset.svg"
     width="24" height="24" alt="sunset icon">

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

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

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

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