import Clip from "#/icons/clip.svg?react"; interface UploadImageInputProps { onUpload: (files: File[]) => void; label?: React.ReactNode; } export function UploadImageInput({ onUpload, label }: UploadImageInputProps) { const handleUpload = (event: React.ChangeEvent) => { if (event.target.files) onUpload(Array.from(event.target.files)); }; return ( ); }