mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
1cec18e8eb
Co-authored-by: afc163 <afc163@gmail.com>
19 lines
567 B
TypeScript
19 lines
567 B
TypeScript
import * as React from 'react';
|
|
import type { UploadProps } from './interface';
|
|
import Upload from './Upload';
|
|
|
|
export type DraggerProps = UploadProps & { height?: number };
|
|
|
|
const InternalDragger: React.ForwardRefRenderFunction<unknown, DraggerProps> = (
|
|
{ style, height, ...restProps },
|
|
ref,
|
|
) => <Upload ref={ref} {...restProps} type="drag" style={{ ...style, height }} />;
|
|
|
|
const Dragger = React.forwardRef(InternalDragger) as React.FC<DraggerProps>;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Dragger.displayName = 'Dragger';
|
|
}
|
|
|
|
export default Dragger;
|