Skip to content

image-plus

add • create • picture

Created:

v0.14.0

Last changed:

v0.409.0

Contributors:

mittalyashuericfenniskarsa-mistmerejguddas
html
<script>
import { createIcons, imagePlus } from 'lucide';

createIcons({
  icons: {
    imagePlus
  }
});
</script>

<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
<div class="icon-image-plus"></div>

See this icon in action

Bug
Feature
Image
112
8
11