Skip to content

rotate-ccw

arrow • left • counter-clockwise • restart • reload • rerun • refresh • backup • undo

Created:

v0.0.0

Last changed:

v0.293.0

Contributors:

colebemiscsandmanericfennisdanielbayleyjguddaskarsa-mistmere
html
<i data-lucide="rotate-ccw"></i>
tsx
import { RotateCcw } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-rotate-ccw"></div>