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

