power-off
  
  html
  
<i data-lucide="power-off"></i>
  
  tsx
  
import { PowerOff } from 'lucide-react';
const App = () => {
  return (
    <PowerOff />
  );
};
export default App;
  
  vue
  
<script setup>
  import { PowerOff } from 'lucide-vue-next';
</script>
<template>
  <PowerOff />
</template>
  
  svelte
  
<script>
import { PowerOff } from 'lucide-svelte';
</script>
<PowerOff />
  
  tsx
  
import { PowerOff } from 'lucide-preact';
const App = () => {
  return (
    <PowerOff />
  );
};
export default App;
  
  tsx
  
import { PowerOff } from 'lucide-solid';
const App = () => {
  return (
    <PowerOff />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, PowerOff } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ PowerOff })
  ],
})
// app.component.html
<lucide-icon name="power-off"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-power-off"></div>
  
  dart
  
Icon(LucideIcons.power-off);

