mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
import * as React from 'react';
|
|
import Upload from './Upload';
|
|
import { UploadProps } from './interface';
|
|
|
|
export type DraggerProps = UploadProps & { height?: number };
|
|
|
|
const Dragger: React.FC<DraggerProps> = props => (
|
|
<Upload {...props} type="drag" style={{ ...props.style, height: props.height }} />
|
|
);
|
|
|
|
export default Dragger;
|