import { FC } from 'react'; import classNames from 'classnames'; import './FileDropzone.scss'; import { DroppableProps } from './types'; import Button from '../Button'; import Typography from '../Typography'; const Dropzone: FC = ({ icon, primaryLabel, secondaryLabel, buttonLabel, getRootProps, getInputProps, isDragActive = false, }) => { return (
{icon}
{primaryLabel} {secondaryLabel}
); }; export default Dropzone;