Skip to content

monitor-check

tv • screen • display • desktop • running • active • virtual machine • vm

Created:

v0.223.0

Last changed:

v0.223.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<i data-lucide="monitor-check"></i>
tsx
import { MonitorCheck } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-monitor-check"></div>