ant-design/components/upload/Dragger.tsx
2019-08-06 15:36:12 +08:00

12 lines
326 B
TypeScript

import * as React from 'react';
import Upload from './Upload';
import { UploadProps } from './interface';
export type DraggerProps = UploadProps & { height?: number };
const Dragger = (props: DraggerProps) => (
<Upload {...props} type="drag" style={{ ...props.style, height: props.height }} />
);
export default Dragger;