Skip to content

@vowel.to/client v0.1.2-393


@vowel.to/client / index / VowelMicrophone

Function: VowelMicrophone()

ts
function VowelMicrophone(__namedParameters): Element | null;

Defined in: lib/vowel/components/VowelMicrophone.tsx:46

Microphone button component Can be placed anywhere in your app

Parameters

ParameterType
__namedParametersVowelMicrophoneProps

Returns

Element | null

Example

tsx
import { VowelMicrophone } from '@/lib/vowel';

function Header() {
  return (
    <header>
      <VowelMicrophone size="default" showStatus />
    </header>
  );
}