import { Box } from '@radix-ui/themes'; import { Info, type LucideProps } from 'lucide-react'; import { Tooltip } from 'radix-ui'; import type { PropsWithChildren } from 'react'; export type InfoIconProps = PropsWithChildren< { tooltipContainerProps?: Omit, 'children'>; } & Omit & React.RefAttributes >; export function InfoIcon({ tooltipContainerProps, children, ...iconProps }: InfoIconProps) { return ( {children} ); } export function TooltipContentContainer({ children, ...props }: React.HTMLAttributes) { return ( {children} ); }