import * as PopoverPrimitive from '@rn-primitives/popover'; import * as React from 'react'; import { Platform, StyleSheet } from 'react-native'; import Animated, { FadeIn, FadeOut } from 'react-native-reanimated'; import { cn } from '@/lib/utils'; import { TextClassContext } from '@/components/ui/text'; const Popover = PopoverPrimitive.Root; const PopoverTrigger = PopoverPrimitive.Trigger; const PopoverContent = React.forwardRef< PopoverPrimitive.ContentRef, PopoverPrimitive.ContentProps & { portalHost?: string } >(({ className, align = 'center', sideOffset = 4, portalHost, ...props }, ref) => { return ( ); }); PopoverContent.displayName = PopoverPrimitive.Content.displayName; export { Popover, PopoverContent, PopoverTrigger };