We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1caf0e3 commit fc76fa7Copy full SHA for fc76fa7
packages/react/src/components/Stack/Stack.tsx
@@ -86,7 +86,7 @@ const Stack = React.forwardRef<React.ReactNode, StackProps>(
86
[`${prefix}--stack-${orientation}`]: true,
87
[`${prefix}--stack-scale-${gap}`]: typeof gap === 'number',
88
});
89
- const style = {};
+ const style = { ...rest.style };
90
91
if (typeof gap === 'string') {
92
style[`--${prefix}-stack-gap`] = gap;
0 commit comments