Skip to content

arrow-right-left

bidirectional • two-way • 2-way • swap • switch • transaction • reorder • move • <- • ->

Created:

v0.174.0

Last changed:

v0.174.0

Contributors:

karsa-mistmere
html
<i data-lucide="arrow-right-left"></i>
tsx
import { ArrowRightLeft } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-arrow-right-left"></div>