Skip to content

rotate-ccw-clock

history • time • redo • undo • rewind • timeline • version • time machine • backup • ccw

Created:

v0.14.0

Last changed:

v0.0.0

Contributors:

ericfennisdanielbayleyjguddaskarsa-mistmere
html
<script>
import { createIcons, rotateCcwClock } from 'lucide';

createIcons({
  icons: {
    rotateCcwClock
  }
});
</script>

<i data-lucide="rotate-ccw-clock"></i>  
tsx
import { RotateCcwClock } from 'lucide-react';

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

export default App;
vue
<script setup>
import { RotateCcwClock } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="rotate-ccw-clock"></lucide-icon>
html
<div class="icon-rotate-ccw-clock"></div>

See this icon in action

Bug
Feature
Rotate
112
8
11