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