Skip to content

refresh-cw-off

rotate • reload • rerun • synchronise • synchronize • arrows • circular • cycle • cancel • no • stop • error • disconnect • ignore

Created:

v0.228.0

Last changed:

v0.228.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<i data-lucide="refresh-cw-off"></i>
tsx
import { RefreshCwOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-refresh-cw-off"></div>