Interface StickyHeaderProps

interface StickyHeaderProps {
    __dangerouslyDisableChildrenGuard?: boolean;
    children: ReactNode;
    className?: string;
    position?: "bottom" | "left" | "right" | "top";
}

Properties

__dangerouslyDisableChildrenGuard?: boolean

If you need to pass custom children for some reason and you are sure that you are doing it right - use this prop to disable children type check.

children: ReactNode
className?: string

Additional class name

position?: "bottom" | "left" | "right" | "top"

Position of the header