Read Aloud does not work in Google Chrome
import { useSpeechSynthesis } from "react-speech-kit";
const { speak ,voices} = useSpeechSynthesis();
const voice = voices[20] || null;
<Button
color="default"
variant="text"
size="small"
disabled={status === "loading" ? true : false}
icon={<MutedOutlined />}
onClick={() => {
speak({ text: message ,voice });
}}
/>