HTML Flip Book - v0.0.0-alpha.36
    Preparing search index...

    Interface FullscreenButtonProps

    interface FullscreenButtonProps {
        ariaLabelEnter?: string;
        ariaLabelExit?: string;
        className?: string;
        enterIcon?: ReactNode;
        exitIcon?: ReactNode;
        targetRef?: RefObject<HTMLElement | null>;
    }
    Index

    Properties

    ariaLabelEnter?: string

    ARIA label for entering fullscreen. Defaults to "Enter fullscreen"

    ariaLabelExit?: string

    ARIA label for exiting fullscreen. Defaults to "Exit fullscreen"

    className?: string

    Additional CSS class name

    enterIcon?: ReactNode

    Custom content for enter fullscreen. Defaults to MaximizeIcon

    exitIcon?: ReactNode

    Custom content for exit fullscreen. Defaults to MinimizeIcon

    targetRef?: RefObject<HTMLElement | null>

    Target element to make fullscreen. If not provided, uses Toolbar's fullscreenTargetRef or document.documentElement