Skip to content

zap-off

flash • camera • lightning • electricity • energy

Created:

v0.0.0

Last changed:

v0.347.0

Contributors:

colebemiskarsa-mistmereericfennis
html
<i data-lucide="zap-off"></i>
tsx
import { ZapOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-zap-off"></div>