Skip to content

Commit

Permalink
Merge branch 'main' into task/improve-test-descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga authored Nov 7, 2023
2 parents de11cc5 + 6a111da commit 144242c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/react/src/Screen/Screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ export interface ScreenProps extends PropsWithChildren<HTMLAttributes<HTMLDivEle

export const Screen = forwardRef(
({ children, className, maxWidth = 'wide', ...restProps }: ScreenProps, ref: ForwardedRef<HTMLDivElement>) => (
<div {...restProps} ref={ref} className={clsx('amsterdam-screen', `amsterdam-screen--${maxWidth}`, className)}>
<div
{...restProps}
ref={ref}
className={clsx('amsterdam-screen', `amsterdam-screen--${maxWidth}`, className)}
lang="nl"
>
{children}
</div>
),
Expand Down

0 comments on commit 144242c

Please sign in to comment.