diff --git a/packages/core/src/components/Box/Box.tsx b/packages/core/src/components/Box/Box.tsx index a8061d6b25..c897659236 100644 --- a/packages/core/src/components/Box/Box.tsx +++ b/packages/core/src/components/Box/Box.tsx @@ -75,6 +75,7 @@ export interface BoxProps extends VibeComponentProps { * TODO: make default in next major version */ scrollable?: boolean; + style?: React.CSSProperties; } const Box: VibeComponent & { @@ -126,7 +127,8 @@ const Box: VibeComponent & { paddingStart, textColor, backgroundColor, - scrollable + scrollable, + style }, ref ) => { @@ -161,7 +163,8 @@ const Box: VibeComponent & { textColor, backgroundColor ), - id: id + id: id, + style }, children );