Interface ExhibitQuickButtonProps

interface ExhibitQuickButtonProps {
    createTooltip?: ((props, disabled) => Element);
    tooltip?: NonNullable<ReactNode>;
}

Hierarchy

  • IconButtonProps
    • ExhibitQuickButtonProps

Properties

createTooltip?: ((props, disabled) => Element)

Allows for custom tooltip creation

Type declaration

    • (props, disabled): Element
    • Parameters

      • props: TooltipProps
      • disabled: boolean

      Returns Element

tooltip?: NonNullable<ReactNode>

Tooltip title. Zero-length titles string are never displayed.