move-right
  
  html
  
<i data-lucide-name="move-right"></i>
  
  tsx
  
import { MoveRight } from 'lucide-react';
const App = () => {
  return (
    <MoveRight />
  );
};
export default App;
  
  vue
  
<script setup>
  import { MoveRight } from 'lucide-vue-next';
</script>
<template>
  <MoveRight />
</template>
  
  svelte
  
<script>
import { MoveRight } from 'lucide-svelte';
</script>
<MoveRight />
  
  tsx
  
import { MoveRight } from 'lucide-preact';
const App = () => {
  return (
    <MoveRight />
  );
};
export default App;
  
  tsx
  
import { MoveRight } from 'lucide-solid';
const App = () => {
  return (
    <MoveRight />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, MoveRight } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ MoveRight })
  ],
})
// app.component.html
<lucide-icon name="move-right"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-move-right"></div>
  
  dart
  
Icon(LucideIcons.move-right);

