image-plus
  
  html
  
<i data-lucide="image-plus"></i>
  
  tsx
  
import { ImagePlus } from 'lucide-react';
const App = () => {
  return (
    <ImagePlus />
  );
};
export default App;
  
  vue
  
<script setup>
  import { ImagePlus } from 'lucide-vue-next';
</script>
<template>
  <ImagePlus />
</template>
  
  svelte
  
<script>
import { ImagePlus } from 'lucide-svelte';
</script>
<ImagePlus />
  
  tsx
  
import { ImagePlus } from 'lucide-preact';
const App = () => {
  return (
    <ImagePlus />
  );
};
export default App;
  
  tsx
  
import { ImagePlus } from 'lucide-solid';
const App = () => {
  return (
    <ImagePlus />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, ImagePlus } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ ImagePlus })
  ],
})
// app.component.html
<lucide-icon name="image-plus"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-image-plus"></div>
  
  dart
  
Icon(LucideIcons.image-plus);


