Skip to content

webcam-off

camera • security

Created:

v1.18.0

Last changed:

v1.18.0

Contributors:

mittalyashuericfenniskarsa-mistmerejordan-burnett
html
<script>
import { createIcons, webcamOff } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Webcam
112
8
11