import { ReactNode } from 'react'; import * as RadixHoverCard from '@radix-ui/react-hover-card'; import { Card } from '../Card'; type HoverCardProps = { children: ReactNode[]; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export function HoverCard({ children, side = 'top', align = 'center', }: HoverCardProps): JSX.Element { return ( {children[0]} {children[1]} ); }