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} -
+ ); }, );