import { IconButton } from '~/components/ui/IconButton'; import { classNames } from '~/utils/classNames'; import React from 'react'; export const SpeechRecognitionButton = ({ isListening, onStart, onStop, disabled, }: { isListening: boolean; onStart: () => void; onStop: () => void; disabled: boolean; }) => { return ( {isListening ?
:
} ); };