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) => ( {before} {children} ));