quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
11 lines (10 loc) • 472 B
TypeScript
/// <reference types="react" />
import { MarginType, WidthType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
export interface IUploadProps extends InputType, MarginType, WidthType {
placeholder?: string;
fileName?: string;
onFileChange?: (file?: File) => void;
}
declare const Upload: import("react").ForwardRefExoticComponent<IUploadProps & import("react").RefAttributes<HTMLInputElement>>;
export default Upload;