import { FileAudio } from 'lucide-react'; export interface UploadModalDropzoneProps { getRootProps: () => object; getInputProps: () => object; isDragActive: boolean; } export function UploadModalDropzone({ getRootProps, getInputProps, isDragActive, }: UploadModalDropzoneProps) { return (

{isDragActive ? 'Déposez le fichier ici' : 'Glissez-déposez un fichier audio'}

ou cliquez pour sélectionner

Formats acceptés: MP3, WAV, OGG, FLAC, M4A, AAC (max 100 MB)

); }