Skip to main content

CollapsableContainer

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