Skip to content

mouth-off

speech • voice • talk • mute • silence • speechless • taste loss • flavor loss • ageusia • tasteless • gustatory • oral • dental • communication • accessibility

Created:

v1.45.0

Last changed:

v1.45.0

Contributors:

juliansolimandokarsa-mistmere
html
<script>
import { createIcons, MouthOff } from 'lucide';

createIcons({
  icons: {
    MouthOff
  }
});
</script>

<i data-lucide="mouth-off"></i>  
tsx
import { MouthOff } from 'lucide-react';

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

export default App;
vue
<script setup>
import { MouthOff } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="mouth-off"></lucide-icon>
html
<div class="icon-mouth-off"></div>

See this icon in action

Bug
Feature
Mouth
112
8
11