Skip to content

copy-type

lab

formatting • styling • rich text • rtf • fonts • font book • typography • collection • slab serif • clone • duplicate • multiple • toolbar • button

Contributors:

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

createIcons({
  icons: {
    copyType
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Copy
112
8
11