Skip to content

copy-image

lab

clone • duplicate • multiple • images • pictures • photos • album • collection • event • gallery

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { copyImage } from '@lucide/lab';

createIcons({
  icons: {
    copyImage
  }
});

document.body.append('<i data-lucide="copy-image"></i>');  
tsx
import { Icon } from 'lucide-react';
import { copyImage } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={copyImage} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { copyImage } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="copyImage" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { copyImage } from '@lucide/lab';
</script>

<Icon iconNode={copyImage} />
tsx
import { Icon } from 'lucide-preact';
import { copyImage } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={copyImage} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { copyImage } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={copyImage} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { copyImage } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="copyImage"></lucide-icon>

See this icon in action

Bug
Feature
Copy
112
8
11