Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
fix: forward component style config and extend config
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit-tailor committed Oct 26, 2023
1 parent 59310db commit dc87e46
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/react/src/styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,14 @@ export function verboseStyled<P, Variants, ComCon>(
// @ts-ignore
[nonVerbosedTheme, , , Component] = plugins[
pluginName
]?.inputMiddleWare<P>(nonVerbosedTheme, true, true, Component);
]?.inputMiddleWare<P>(
nonVerbosedTheme,
true,
true,
Component,
componentStyleConfig,
ExtendedConfig
);
}
nonVerbosedTheme = convertStyledToStyledVerbosed(nonVerbosedTheme);
}
Expand Down

0 comments on commit dc87e46

Please sign in to comment.