mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
1d1f4efcf4
* type: update type unknown with UploadRef * type: fix type
19 lines
520 B
TypeScript
19 lines
520 B
TypeScript
import * as React from 'react';
|
|
import type { UploadRef } from './Upload';
|
|
import Upload from './Upload';
|
|
import type { UploadProps } from './interface';
|
|
|
|
export type DraggerProps = UploadProps & { height?: number };
|
|
|
|
const Dragger = React.forwardRef<UploadRef, DraggerProps>(
|
|
({ style, height, ...restProps }, ref) => (
|
|
<Upload ref={ref} {...restProps} type="drag" style={{ ...style, height }} />
|
|
),
|
|
);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Dragger.displayName = 'Dragger';
|
|
}
|
|
|
|
export default Dragger;
|