From 224c0d0d66c2b7377ad72e49218463991ea78bbb Mon Sep 17 00:00:00 2001 From: sascha-kaleidoscode <104759380+sascha-kaleidoscode@users.noreply.github.com> Date: Sun, 9 Nov 2025 21:59:12 +0100 Subject: [PATCH] fix: correct parameter order in function call --- src/web/api.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/api.tsx b/src/web/api.tsx index fe1e477..e43f800 100644 --- a/src/web/api.tsx +++ b/src/web/api.tsx @@ -31,7 +31,7 @@ export const styled = < _options?: StyledOptions, ) => { return (props: StyledProps, M>) => { - return useCssElement(baseComponent, mapping, props); + return useCssElement(baseComponent, props, mapping); }; };