Interface ExhibitTooltipProps

interface ExhibitTooltipProps {
    chips?: string[] | ReactNode | ReactNode[];
    componentDisabled?: boolean;
    description?: NonNullable<ReactNode>;
    disabled?: boolean;
    label?: NonNullable<ReactNode>;
    maxWidth?: number;
    shortcut?: IKeyStroke;
    simple?: boolean;
    title?: ReactNode;
    useModifierSymbols?: boolean;
}

Hierarchy

  • Omit<TooltipProps, "title">
    • ExhibitTooltipProps

Properties

chips?: string[] | ReactNode | ReactNode[]
componentDisabled?: boolean
description?: NonNullable<ReactNode>
disabled?: boolean

Prevent tooltip from show

label?: NonNullable<ReactNode>
maxWidth?: number
shortcut?: IKeyStroke
simple?: boolean

If true returns a very simple text tooltip.

Remarks

All Exhibit tooltip props are ignored.

title?: ReactNode
useModifierSymbols?: boolean