import { type Root, type Content, type Trigger } from '@radix-ui/react-popover' import { CircleQuestionMark } from 'lucide-react' import { cn } from '@/lib/utils' import { Button } from '@/components/ui/button' import { Popover, PopoverContent, PopoverTrigger, } from '@/components/ui/popover' type LearnMoreProps = React.ComponentProps & { contentProps?: React.ComponentProps triggerProps?: React.ComponentProps } export function LearnMore({ children, contentProps, triggerProps, ...props }: LearnMoreProps) { return ( {children} ) }