@dust-tt/sparkle 0.2.190-rc → 0.2.190

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.
@@ -68,8 +68,8 @@ import { Avatar } from "./components/Avatar";
68
68
  export { Avatar };
69
69
  import Spinner from "./components/Spinner";
70
70
  export { Spinner };
71
- import DragArea from "./components/DragArea";
72
- export { DragArea };
71
+ import DropzoneOverlay from "./components/DropzoneOverlay";
72
+ export { DropzoneOverlay };
73
73
  import CollapseButton from "./components/CollapseButton";
74
74
  export { CollapseButton };
75
75
  import { Modal } from "./components/Modal";
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface DropzoneOverlayProps {
3
+ description: string;
4
+ isDragActive: boolean;
5
+ title: string;
6
+ visual?: React.ReactNode;
7
+ }
8
+ export default function DropzoneOverlay({ description, isDragActive, title, visual, }: DropzoneOverlayProps): React.JSX.Element | null;