import React, { FC } from "react"; import { Icon } from "../icon"; import Typography from "../typography/typography"; export interface UploadProps { disabled?: boolean; } export const Upload: FC = ({ disabled = false }) => { return (
Click to upload or drag and drop
SVG, PNG, JPG or GIF (max. 800*400px)
); }; export default Upload;