ant-design/components/upload/Dragger.tsx
叶枫 502dac12aa
docs: format code (#48309)
* docs: fix code

* feat: lint

* feat: prettier

* feat: test

* feat: review

* feat: format html

* feat: format html
2024-04-08 14:04:08 +08:00

26 lines
617 B
TypeScript

import * as React from 'react';
import type { UploadProps } from './interface';
import type { UploadRef } from './Upload';
import Upload from './Upload';
export type DraggerProps = UploadProps & { height?: number };
const Dragger = React.forwardRef<UploadRef, DraggerProps>(
({ style, height, hasControlInside = false, ...restProps }, ref) => (
<Upload
ref={ref}
hasControlInside={hasControlInside}
{...restProps}
type="drag"
style={{ ...style, height }}
/>
),
);
if (process.env.NODE_ENV !== 'production') {
Dragger.displayName = 'Dragger';
}
export default Dragger;