{/* X-Button oben rechts (optional) */}
{showCloseButton && (
)}
{/* Header + Body + Sidebar */}
{/* Header (Icon + Titel + optionale Beschreibung) */}
{icon && (
{icon}
)}
{title && (
{title}
)}
{/* Beschreibung nur anzeigen, wenn keine eigenen Children übergeben wurden */}
{!children && description && (
{description}
)}
{/* Body + Sidebar */ }
{(bodyContent || sidebar) && (
{bodyContent && (
{bodyContent}
)}
{sidebar && (
)}
)}
{/* Footer */}
{footer ? (
footer
) : hasActions ? (
{primaryAction &&
renderActionButton(
primaryAction,
isAlert
? 'sm:w-auto'
: secondaryAction
? 'sm:col-start-2'
: '',
)}
{secondaryAction &&
renderActionButton(
{ ...secondaryAction, variant: secondaryAction.variant ?? 'secondary' },
clsx(
'mt-3 sm:mt-0',
isAlert && 'sm:w-auto sm:mr-3',
!useGrayFooter && 'bg-white',
),
)}
) : null}