softicons.dev

rocket icon

Free rocket SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons media 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="M5 13c-1.5.5-3 2-3 6 4 0 5.5-1.5 6-3"/>
  <path d="M14.5 4.5C18 8 16 14 12 18l-5-5C11 9 11 7 14.5 4.5Z"/>
  <path d="M14.5 4.5C16 4 19 4 20 5c1 1 1 4 .5 5.5"/>
  <circle cx="13.5" cy="10.5" r="1.5"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/media/rocket.svg"
     width="24" height="24" alt="rocket icon">

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

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

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

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