File: bandage.md | Updated: 11/15/2025
Return to top
plaster • band-aid • first aid • medical • health • wound • injury • care • treatment • healing • protection • emergency • aid • safety • patch
VanillaReactVueSveltePreactSolidAngularIcon font
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
<div class="icon-bandage"></div>
BandageCancel
Bug
Feature
Bandage
Documents Readme Bandage 12
112
8
11
2