Skip to content

popcorn

cinema • movies • films • salted • sweet • sugar • candy • snack

Created:

v0.246.0

Last changed:

v0.246.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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