Skip to content

merge

combine • join • unite

Created:

v0.189.0

Last changed:

v0.189.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="merge"></i>
tsx
import { Merge } from 'lucide-react';

const App = () => {
  return (
    <Merge />
  );
};

export default App;
vue
<script setup>
  import { Merge } from 'lucide-vue-next';
</script>

<template>
  <Merge />
</template>
svelte
<script>
import { Merge } from 'lucide-svelte';
</script>

<Merge />
tsx
import { Merge } from 'lucide-preact';

const App = () => {
  return (
    <Merge />
  );
};

export default App;
tsx
import { Merge } from 'lucide-solid';

const App = () => {
  return (
    <Merge />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Merge } from 'lucide-angular';

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

// app.component.html
<lucide-icon name="merge"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-merge"></div>
dart
Icon(LucideIcons.merge);