Lucide v1 is out! You're looking at the site for v1, for v0 go to v0 site

Skip to content

cctv-off

camera • surveillance • recording • film • videotape • crime • watching

Created:

v1.0.0

Last changed:

v1.0.0

Contributors:

danielbayleykarsa-mistmererrod497
html
<script>
import { createIcons, cctvOff } from 'lucide';

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

<i data-lucide="cctv-off"></i>  
tsx
import { CctvOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="cctv-off"></lucide-icon>
html
<div class="icon-cctv-off"></div>

See this icon in action

Bug
Feature
Cctv
112
8
11