Skip to content

theater

theater • theatre • entertainment • podium • stage • musical

Created:

v0.279.0

Last changed:

v0.279.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="theater"></i>
tsx
import { Theater } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-theater"></div>
dart
Icon(LucideIcons.theater);