Skip to content

presentation

screen • whiteboard • marker pens • markers • blackboard • chalk • easel • school • learning • lesson • office • meeting • project • planning

Created:

v0.241.0

Last changed:

v0.241.0

Contributors:

karsa-mistmeredanielbayley
html
<i data-lucide="presentation"></i>
tsx
import { Presentation } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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