softicons.dev

syringe icon

Free syringe 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="m18 2 4 4"/>
  <path d="m17 7 3-3"/>
  <path d="M19 9 8.7 19.3a2 2 0 0 1-1.4.6H4v-3.3a2 2 0 0 1 .6-1.4L15 5Z"/>
  <line x1="9" y1="11" x2="11" y2="13"/>
  <line x1="12" y1="8" x2="14" y2="10"/>
  <line x1="6" y1="14" x2="8" y2="16"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/syringe.svg"
     width="24" height="24" alt="syringe icon">

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

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

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

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