import React from 'react'; import { VoiceName } from '../types'; import { AVAILABLE_VOICES } from '../constants'; import { Mic } from 'lucide-react'; interface VoiceSelectorProps { selectedVoice: VoiceName; onVoiceChange: (voice: VoiceName) => void; disabled?: boolean; } export const VoiceSelector: React.FC = ({ selectedVoice, onVoiceChange, disabled }) => { return (
); };