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