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

