From 985a2b5297f4a8f5e44bc6b6f8a0821e4c2721e2 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:28:51 +0900 Subject: [PATCH] fix(drawer): add displayName --- packages/react/components/Drawer.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/react/components/Drawer.tsx b/packages/react/components/Drawer.tsx index 82fff7a..e35bf0a 100644 --- a/packages/react/components/Drawer.tsx +++ b/packages/react/components/Drawer.tsx @@ -138,6 +138,7 @@ const DrawerOverlay = forwardRef( ); }, ); +DrawerOverlay.displayName = "DrawerOverlay"; const drawerContentColors = { background: "bg-white dark:bg-black", @@ -374,6 +375,7 @@ const DrawerContent = forwardRef( ); }, ); +DrawerContent.displayName = "DrawerContent"; const DrawerClose = forwardRef< HTMLButtonElement, @@ -388,6 +390,7 @@ const DrawerClose = forwardRef< /> ); }); +DrawerClose.displayName = "DrawerClose"; const [drawerHeaderVariant, resolveDrawerHeaderVariantProps] = vcn({ base: "flex flex-col gap-2", @@ -417,6 +420,7 @@ const DrawerHeader = forwardRef( ); }, ); +DrawerHeader.displayName = "DrawerHeader"; const [drawerBodyVariant, resolveDrawerBodyVariantProps] = vcn({ base: "flex-grow", @@ -444,6 +448,7 @@ const DrawerBody = forwardRef((props, ref) => { /> ); }); +DrawerBody.displayName = "DrawerBody"; const [drawerFooterVariant, resolveDrawerFooterVariantProps] = vcn({ base: "flex flex-row justify-end gap-2", @@ -473,6 +478,7 @@ const DrawerFooter = forwardRef( ); }, ); +DrawerFooter.displayName = "DrawerFooter"; export { DrawerRoot,