Mid-rewrite

This commit is contained in:
2026-02-06 13:14:24 +00:00
parent 601c3db9d0
commit eb1bf9020e
12 changed files with 1300 additions and 103 deletions

View File

@@ -19,6 +19,8 @@ interface DialogWrapperProps {
children: React.ReactNode;
/** Dialog width */
width?: number;
/** Dialog Background Color */
backgroundColor?: string;
}
/**
@@ -29,12 +31,15 @@ function DialogWrapper({
borderColor = colors.primary,
children,
width = 60,
backgroundColor = colors.bg,
}: DialogWrapperProps): React.ReactElement {
return (
<Box
flexDirection="column"
borderStyle="double"
borderColor={borderColor}
// backgroundColor={backgroundColor || 'white'}
backgroundColor="white"
paddingX={2}
paddingY={1}
width={width}