From f00dbc46d3402e501c9caa00a95ff2da3650bdc9 Mon Sep 17 00:00:00 2001 From: Tyler Matteo Date: Thu, 8 Aug 2024 12:10:04 -0400 Subject: [PATCH] fix(Drawer): Add missing exports to Drawer barrel file --- src/components/Drawer/index.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/Drawer/index.tsx b/src/components/Drawer/index.tsx index 1108ca1..d97d78d 100644 --- a/src/components/Drawer/index.tsx +++ b/src/components/Drawer/index.tsx @@ -1,2 +1,10 @@ -export { Drawer } from "./Drawer"; -export type { DrawerProps } from "./Drawer"; +export { + Drawer, + DrawerBody, + DrawerFooter, + DrawerHeader, + DrawerOverlay, + DrawerContent, + DrawerCloseButton, +} from "./Drawer"; +export type { DrawerProps, DrawerContentProps } from "./Drawer";