Interface HoverCardProps

interface HoverCardProps {
    children?: ReactNode;
    onOpenChange?: Dispatch<SetStateAction<boolean>>;
    open?: boolean;
    trigger: ReactNode;
}

Hierarchy

  • PropsWithChildren
    • HoverCardProps

Properties

children?: ReactNode
onOpenChange?: Dispatch<SetStateAction<boolean>>
open?: boolean
trigger: ReactNode