Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

monitor-pause

tv • screen • display • desktop • video • movie • film • suspend • hibernate • boot • virtual machine • vm

创建时间:

v0.223.0

最后修改:

v0.223.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<script>
import { createIcons, monitorPause } from 'lucide';

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

<i data-lucide="monitor-pause"></i>  
tsx
import { MonitorPause } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="monitor-pause"></lucide-icon>
html
<div class="icon-monitor-pause"></div>

看看这个图标的实际效果

错误
功能
Monitor
112
8
11