interface ActionButtonsProps {
    actionButtons?: [ActionButtonProps?, ActionButtonProps?, ActionButtonProps?];
    hideTooltipOnScroll?: boolean;
    isIconButton?: boolean;
    isOnImage?: boolean;
    isScrolling?: boolean;
    ref?: RefObject<null | HTMLButtonElement>;
}

Properties

Array of up to three ActionButtonProps objects.

hideTooltipOnScroll?: boolean

If true, hide tooltip on scroll down.

isIconButton?: boolean

If true, action button will be displayed as icon button.

isOnImage?: boolean

If true, modify action button styling.

isScrolling?: boolean

If true, modify action button styling.

ref?: RefObject<null | HTMLButtonElement>

Reference to the HTML button element.