Skip to main content

CollapsableContainer

const CollapsableContainer: React.FC<React.PropsWithChildren<{
badgeCount?: number;
collapseToggleAriaLabel?: string;
footerContent?: React.ReactElement;
headerEndContent?: React.ReactElement;
icon: IconSource;
isOpen: boolean;
onToggle: (currentOpenState) => void;
openStyling?: string;
scrollElementRef?: React.RefObject<HTMLDivElement>;
testId?: string;
title: string;
}>>;