Type Alias PopUpHeaderAction

PopUpHeaderAction: {
    className?: string;
    content: Content;
    onClick?: () => void;
    title?: string;
}

Represents an action displayed in the modal header (next to the close button).

Type declaration

  • OptionalclassName?: string

    Additional CSS class for the header action button.

  • content: Content

    The content to display in the header action button.

  • OptionalonClick?: () => void

    Function to call when the header action is clicked.

  • Optionaltitle?: string

    Tooltip text for the header action button.