softicons.dev

sparkles icon

Free sparkles SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface 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="M12 3l1.6 4.4L18 9l-4.4 1.6L12 15l-1.6-4.4L6 9l4.4-1.6Z"/>
  <path d="M19 14l.6 1.8 1.8.6-1.8.6L19 19l-.6-1.8L16.6 16.6l1.8-.6Z"/>
  <path d="M5 15l.5 1.5L7 17l-1.5.5L5 19l-.5-1.5L3 17l1.5-.5Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/sparkles.svg"
     width="24" height="24" alt="sparkles icon">

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

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

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

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