@dust-tt/sparkle 0.2.151 → 0.2.152

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.
@@ -62,6 +62,8 @@ import { Avatar } from "./components/Avatar";
62
62
  export { Avatar };
63
63
  import Spinner from "./components/Spinner";
64
64
  export { Spinner };
65
+ import CollapseButton from "./components/CollapseButton";
66
+ export { CollapseButton };
65
67
  import { Modal } from "./components/Modal";
66
68
  export { Modal };
67
69
  import ConfettiBackground from "./components/ConfettiBackground";
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ export interface CollapseButtonProps {
3
+ direction: "left" | "right";
4
+ }
5
+ declare const CollapseButton: React.FC<CollapseButtonProps>;
6
+ export default CollapseButton;