From 2e441ff1e57e79a5ade95816140158c456183465 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:40:33 +0900 Subject: [PATCH] fix(Popover): apply asChild effect on PopoverContent --- packages/react/components/Popover.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/react/components/Popover.tsx b/packages/react/components/Popover.tsx index 59323be..b97f470 100644 --- a/packages/react/components/Popover.tsx +++ b/packages/react/components/Popover.tsx @@ -200,7 +200,7 @@ const PopoverContent = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolvePopoverContentVariantProps(props); - const { children, ...otherPropsExtracted } = otherPropsCompressed; + const { children, asChild, ...otherPropsExtracted } = otherPropsCompressed; const [state, setState] = useContext(PopoverContext); const internalRef = useRef(null); @@ -221,8 +221,10 @@ const PopoverContent = React.forwardRef( }; }, [state.controlled, setState]); + const Comp = asChild ? Slot : "div"; + return ( -
( }} > {children} -
+ ); }, );