Skip to content

projector

cinema • film • movie • home video • presentation • slideshow • office • meeting • project • planning

Created:

v0.241.0

Last changed:

v0.241.0

Contributors:

danielbayley
html
<i data-lucide="projector"></i>
tsx
import { Projector } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-projector"></div>