Skip to content

redo-2

undo • rerun • history

Created:

v0.44.0

Last changed:

v0.44.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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