import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from './ui/dialog'; import { Label } from './ui/label'; import { SpeechVoiceSelect } from './ui/speech-voice-select'; type SettingsModalProps = { isOpen: boolean; onClose: () => void; }; export default function SettingsModal({ isOpen, onClose }: SettingsModalProps) { return ( !open && onClose()}> Settings Configure preferences for speech and more.

Choose a preferred text-to-speech voice. “Auto” selects the best available voice on your device.

{/* TODO: Future settings (e.g., streaming, theme, hotkeys) */}
); }