softicons.dev

flashlight icon

Free flashlight SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons devices 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="M6 2h12l-1 5H7Z"/>
  <path d="M7 7h10v3a2 2 0 0 1-1 1.7l-1 .6a2 2 0 0 0-1 1.7V21a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-6a2 2 0 0 0-1-1.7l-1-.6A2 2 0 0 1 7 10Z"/>
  <line x1="10" y1="16" x2="14" y2="16"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/devices/flashlight.svg"
     width="24" height="24" alt="flashlight icon">

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

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

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

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