import * as React from 'react' import * as PopoverPrimitive from '@radix-ui/react-popover' // @ts-ignore import { cn } from '@/lib/utils' import { RemoveScroll } from 'react-remove-scroll' const Popover = PopoverPrimitive.Root const PopoverTrigger = PopoverPrimitive.Trigger const PopoverArrow = PopoverPrimitive.Arrow const PopoverClose = PopoverPrimitive.Close const PopoverContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & any >(({ className, align = 'center', sideOffset = 4, withoutAnimation, ...props }, ref) => ( )) PopoverContent.displayName = PopoverPrimitive.Content.displayName const PopoverRemoveScroll = RemoveScroll export { Popover, PopoverTrigger, PopoverRemoveScroll, PopoverContent, PopoverArrow, PopoverClose }