UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

31 lines (30 loc) 689 B
"use client"; import * as React from 'react'; import { isNonNullable } from '@rc-component/util'; import Upload from './Upload'; const Dragger = /*#__PURE__*/React.forwardRef((props, ref) => { const { style, height, hasControlInside = false, children, ...restProps } = props; const mergedStyle = { ...style, ...(isNonNullable(height) && { height }) }; return /*#__PURE__*/React.createElement(Upload, { ref: ref, hasControlInside: hasControlInside, ...restProps, style: mergedStyle, type: "drag" }, children); }); if (process.env.NODE_ENV !== 'production') { Dragger.displayName = 'Dragger'; } export default Dragger;