Currently, the speech recognition language is hardcoded: ```tsx // prompt-input.tsx speechRecognition.lang = "en-US"; ``` Passing a lang prop does not work: ```tsx <PromptInputSpeechButton onTranscriptionChange={setInput} textareaRef={textareaRef} lang="fr" /> ``` ## Proposed fix Add a `lang` props to `PromptInputSpeechButton`: speechRecognition.lang = ~~"en-US"~~ lang; ```tsx // prompt-input.tsx export const PromptInputSpeechButton = ({ className, textareaRef, onTranscriptionChange, lang = "en-US", ...props }) => {...} ```