Skip to content

mic

record • sound • listen • radio • podcast • microphone

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="mic"></i>
tsx
import { Mic } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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