Skip to content

meh

emoji • face • neutral • emotion

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemiscsandmanmittalyashuericfennis
html
<i data-lucide="meh"></i>
tsx
import { Meh } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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