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

