Skip to content

Commit

Permalink
expose whiteSpace on Box
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhdaware committed Jul 20, 2023
1 parent 06ca71d commit 48b987f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/blade/src/components/Box/Box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const makeBoxProps = (props: BoxProps): KeysRequired<Omit<BoxProps, 'testID' | '
overflow: props.overflow,
overflowX: props.overflowX,
overflowY: props.overflowY,
whiteSpace: props.whiteSpace,
height: props.height,
minHeight: props.minHeight,
maxHeight: props.maxHeight,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ InternalControlledSelect.parameters = {
// For chromatic and internal react native testing
export const InternalMultiSelect = (): JSX.Element => {
return (
<Box padding="spacing.5" maxWidth="400px">
<Box padding="spacing.5">
<Dropdown selectionType="multiple">
<SelectInput label="Select City" />
<DropdownOverlay>
Expand Down

0 comments on commit 48b987f

Please sign in to comment.