Skip to content

ambulance

ambulance • emergency • medical • vehicle • siren • healthcare • transportation • rescue • urgent • first aid

Created:

v0.317.0

Last changed:

v0.317.0

Contributors:

jordan808jguddascolebemisahtohbi4ericfennisAndretocsandmankarsa-mistmeredanielbayley
html
<i data-lucide="ambulance"></i>
tsx
import { Ambulance } from 'lucide-react';

const App = () => {
  return (
    <Ambulance />
  );
};

export default App;
vue
<script setup>
  import { Ambulance } from 'lucide-vue-next';
</script>

<template>
  <Ambulance />
</template>
svelte
<script>
import { Ambulance } from 'lucide-svelte';
</script>

<Ambulance />
tsx
import { Ambulance } from 'lucide-preact';

const App = () => {
  return (
    <Ambulance />
  );
};

export default App;
tsx
import { Ambulance } from 'lucide-solid';

const App = () => {
  return (
    <Ambulance />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Ambulance } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Ambulance })
  ],
})

// app.component.html
<lucide-icon name="ambulance"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-ambulance"></div>