softicons.dev

ambulance icon

Free ambulance SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce 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="M14 18V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v11h2"/>
  <path d="M14 9h4l3 3v6h-2"/>
  <path d="M9 18h5"/>
  <circle cx="7" cy="18" r="2"/>
  <circle cx="17" cy="18" r="2"/>
  <line x1="8" y1="9" x2="8" y2="13"/>
  <line x1="6" y1="11" x2="10" y2="11"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/ambulance.svg"
     width="24" height="24" alt="ambulance icon">

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

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

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

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