import { PhotoIcon } from '@heroicons/react/24/outline'; import { useId } from 'react'; type FileInputProps = { name: string; label: string; }; const FileInput = ({ name, label }: FileInputProps) => { const id = useId(); return (
); }; export default FileInput;