chat / client /src /components /Nav /SettingsTabs /Speech /TTS /TextToSpeechSwitch.tsx
helloya20's picture
Upload 2345 files
f0743f4 verified
import ToggleSwitch from '../../ToggleSwitch';
import store from '~/store';
export default function TextToSpeechSwitch({
onCheckedChange,
}: {
onCheckedChange?: (value: boolean) => void;
}) {
return (
<ToggleSwitch
stateAtom={store.textToSpeech}
localizationKey={'com_nav_text_to_speech' as const}
switchId="TextToSpeech"
onCheckedChange={onCheckedChange}
strongLabel={true}
/>
);
}