Skip to content

drama

drama • masks • theater • theatre • entertainment • show

Created:

v0.279.0

Last changed:

v0.279.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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