19 lines
442 B
TypeScript
19 lines
442 B
TypeScript
|
|
import React, { ReactNode } from 'react';
|
||
|
|
import { Box, as } from 'folds';
|
||
|
|
import * as css from './layout.css';
|
||
|
|
|
||
|
|
type CompactLayoutProps = {
|
||
|
|
before?: ReactNode;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const CompactLayout = as<'div', CompactLayoutProps>(
|
||
|
|
({ before, children, ...props }, ref) => (
|
||
|
|
<Box gap="200" {...props} ref={ref}>
|
||
|
|
<Box className={css.CompactHeader} gap="200" shrink="No">
|
||
|
|
{before}
|
||
|
|
</Box>
|
||
|
|
{children}
|
||
|
|
</Box>
|
||
|
|
)
|
||
|
|
);
|