ant-design/components/upload/Dragger.tsx
2017-04-13 17:33:08 +08:00

13 lines
380 B
TypeScript

import React from 'react';
import Upload from './Upload';
import { UploadProps } from './interface';
export type DraggerProps = UploadProps & { height?: number };
export default class Dragger extends React.Component<DraggerProps, any> {
render() {
const { props } = this;
return <Upload {...props} type="drag" style={{ ...props.style, height: props.height }}/>;
}
}