Skip to content

redo

undo • rerun • history

Last changed:

v0.18.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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