Skip to content

rotate-ccw-square

left • counter-clockwise • rotate • image • 90 • 45 • degrees • °

Created:

v0.345.0

Last changed:

v0.345.0

Contributors:

danielbayley
html
<i data-lucide="rotate-ccw-square"></i>
tsx
import { RotateCcwSquare } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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