import AudioPlayer from '@/components/AudioPlayer' interface AudioSectionProps { word: string pronunciation?: string className?: string showPronunciation?: boolean } export const AudioSection: React.FC = ({ word, pronunciation, className = '', showPronunciation = true }) => { return (
{/* 音頻播放器 */} {/* 發音符號 */} {showPronunciation && pronunciation && ( {pronunciation} )}
) }