diff --git a/apps/client/src/widgets/react/PropertySheet.tsx b/apps/client/src/widgets/react/PropertySheet.tsx index d359bd41bb..0053ea4ddd 100644 --- a/apps/client/src/widgets/react/PropertySheet.tsx +++ b/apps/client/src/widgets/react/PropertySheet.tsx @@ -1,15 +1,16 @@ import { ComponentChildren } from "preact"; +import clsx from "clsx"; import "./PropertySheet.css"; -export function PropertySheet({ children }: { children: ComponentChildren }) { - return
+export function PropertySheet({ className, children }: { className?: string, children: ComponentChildren }) { + return
{children}
} -export function PropertySheetItem({label, children}: {label: string, children: ComponentChildren}) { +export function PropertySheetItem({className, label, children}: {className?: string, label: string, children: ComponentChildren}) { return
{label}
-
{children}
+
{children}
} \ No newline at end of file