interface ITabSetRenderValues {
    buttons: ReactNode[];
    overflowPosition: undefined | number;
    stickyButtons: ReactNode[];
}

Properties

buttons: ReactNode[]

components that will be added at the end of the tabset

overflowPosition: undefined | number

position to insert overflow button within [...stickyButtons, ...buttons] if left undefined position will be after the sticky buttons (if any)

stickyButtons: ReactNode[]

components that will be added after the tabs