iv-bag
html
<script>
import { createIcons, IvBag } from 'lucide';
createIcons({
icons: {
IvBag
}
});
</script>
<i data-lucide="iv-bag"></i>
tsx
import { IvBag } from 'lucide-react';
const App = () => {
return (
<IvBag />
);
};
export default App;
vue
<script setup>
import { IvBag } from '@lucide/vue';
</script>
<template>
<IvBag />
</template>
svelte
<script>
import { IvBag } from 'lucide-svelte';
</script>
<IvBag />
tsx
import { IvBag } from 'lucide-preact';
const App = () => {
return (
<IvBag />
);
};
export default App;
tsx
import { IvBag } from 'lucide-solid';
const App = () => {
return (
<IvBag />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, IvBag } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ IvBag })
],
})
// app.component.html
<lucide-icon name="iv-bag"></lucide-icon>
html
<div class="icon-iv-bag"></div>
See this icon in action
Bug
Feature
Iv
112
8
11