@delightui/components 0.1.58 → 0.1.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,7 @@ import { ButtonProps, IconButtonProps, TextProps } from '../../atoms';
12
12
  * @param onFilesReset () => void - callback when files are reset
13
13
  */
14
14
  export type DropzoneProps = {
15
+ className?: string;
15
16
  /**
16
17
  * The initial state of the dropzone.
17
18
  */
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { DropzoneContentProps } from './DropzoneContent.types';
2
- declare const DropzoneContent: (props: DropzoneContentProps) => import("react").JSX.Element;
3
+ declare const DropzoneContent: (props: DropzoneContentProps) => React.JSX.Element;
3
4
  export default DropzoneContent;