19 lines
463 B
TypeScript
19 lines
463 B
TypeScript
|
|
import React, { ReactNode } from 'react';
|
||
|
|
import { Box, as } from 'folds';
|
||
|
|
import * as css from './layout.css';
|
||
|
|
|
||
|
|
type ModernLayoutProps = {
|
||
|
|
before?: ReactNode;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const ModernLayout = as<'div', ModernLayoutProps>(({ before, children, ...props }, ref) => (
|
||
|
|
<Box gap="300" {...props} ref={ref}>
|
||
|
|
<Box className={css.ModernBefore} shrink="No">
|
||
|
|
{before}
|
||
|
|
</Box>
|
||
|
|
<Box grow="Yes" direction="Column">
|
||
|
|
{children}
|
||
|
|
</Box>
|
||
|
|
</Box>
|
||
|
|
));
|