dhre-component-lib 0.4.5 → 0.4.6

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.
@@ -7,6 +7,7 @@ interface DrawerProps {
7
7
  component: React.ReactNode;
8
8
  anchor?: "left" | "right" | "top" | "bottom";
9
9
  variant?: "temporary" | "persistent" | "permanent";
10
+ className?: string;
10
11
  }
11
12
  declare const Drawer: React.FC<DrawerProps>;
12
13
  export default Drawer;
package/dist/index.d.ts CHANGED
@@ -311,6 +311,7 @@ interface DrawerProps {
311
311
  component: React.ReactNode;
312
312
  anchor?: "left" | "right" | "top" | "bottom";
313
313
  variant?: "temporary" | "persistent" | "permanent";
314
+ className?: string;
314
315
  }
315
316
  declare const Drawer: React.FC<DrawerProps>;
316
317