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 96da530 commit 1af160cCopy full SHA for 1af160c
packages/vibrant-components/src/lib/ModalBottomSheet/ModalBottomSheetProps.ts
@@ -13,7 +13,7 @@ export type ModalBottomSheetProps = Either<
13
> & {
14
title?: string;
15
subtitle?: string;
16
- size?: 'full' | 'lg' | 'md';
+ size?: 'full' | 'lg' | 'md' | 'xl';
17
testId?: string;
18
renderContents?: (_: { close: () => void }) => ReactElementChild;
19
onClose?: () => void;
@@ -77,6 +77,9 @@ export const withModalBottomSheetVariation = withVariation<ModalBottomSheetProps
77
lg: {
78
desktopModalWidth: 760,
79
},
80
+ xl: {
81
+ desktopModalWidth: 1132,
82
+ },
83
full: {
84
desktopModalWidth: '100%',
85
0 commit comments