Skip to content

laugh

emoji • face • happy • good • emotion

Created:

v0.67.0

Last changed:

v0.133.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="laugh"></i>
tsx
import { Laugh } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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