import React from 'react' import { Box, BoxProps } from '../../Box/Box' import * as styles from './styles.css' export interface Props extends Omit { children: React.ReactNode style?: React.CSSProperties onScroll?: React.UIEventHandler } export const Body = React.forwardRef( ({ children, ...boxProps }, ref) => { return ( {children} ) }, )