yarcl
    Preparing search index...

    Interface HoverCardProps

    Props for HoverCard.

    interface HoverCardProps {
        children: ReactElement;
        closeDelay?: number;
        content: ReactNode;
        openDelay?: number;
        padding?: Spacing;
        placement?: Placement;
        radius?: Radius;
    }
    Index
    children: ReactElement

    A single focusable element, usually a Link.

    closeDelay?: number

    Delay before closing after the pointer leaves, in ms.

    150
    
    content: ReactNode

    Rich preview content. Can contain links; the pointer can move into the card without closing it.

    openDelay?: number

    Delay before opening, in ms.

    300
    
    padding?: Spacing

    Inner padding, from the spacing config.

    config.defaults.padding
    
    placement?: Placement

    Preferred side. Flips when there isn't room.

    'bottom'
    
    radius?: Radius

    Corner radius, from the radii config.

    config.defaults.radius