import type { JSX } from 'react'; type Props = { isEnabled: boolean; }; export const FileDropzoneOverlay = (props: Props): JSX.Element => { const { isEnabled } = props; if (isEnabled) { return (