From c112db13a8b81f923698f6e899df36a1486f3a60 Mon Sep 17 00:00:00 2001 From: Celian-abd <101793092+Celian-abd@users.noreply.github.com> Date: Thu, 3 Jul 2025 04:52:49 +0200 Subject: [PATCH] feat: Add possibility to add additional props for PanelSection (#5172) --- platform/ui-next/src/components/PanelSection/PanelSection.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/ui-next/src/components/PanelSection/PanelSection.tsx b/platform/ui-next/src/components/PanelSection/PanelSection.tsx index 37811601f..2559d5858 100644 --- a/platform/ui-next/src/components/PanelSection/PanelSection.tsx +++ b/platform/ui-next/src/components/PanelSection/PanelSection.tsx @@ -28,13 +28,14 @@ interface PanelSectionContentProps { export const PanelSection: React.FC & { Header: React.FC; Content: React.FC; -} = ({ children, defaultOpen = true, className }) => { +} = ({ children, defaultOpen = true, className, ...props }) => { return (