import { Box } from '@mui/material'; import { IBottomSheetContentWrapperProps } from '../../core'; import { isFn } from '../../utils'; function BottomSheetContentWrapper({ children, contentWrapperProps }: IBottomSheetContentWrapperProps) { return ( ({ ...(isFn(contentWrapperProps?.sx) ? (contentWrapperProps.sx as Function)(theme) : (contentWrapperProps?.sx ?? {})) })} > {children} ); } export default BottomSheetContentWrapper;