Skip to content

bandage

plaster • band-aid • first aid • medical • health • wound • injury • care • treatment • healing • protection • emergency • aid • safety

Created:

v0.425.0

Last changed:

v0.425.0

Contributors:

karsa-mistmerejamiemlaw
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="bandage"></i>');  
tsx
import { Bandage } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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