import React, { forwardRef } from 'react';
const AlertDialogBody = (StyledAlertDialogBody) => forwardRef(({ ...props }, ref) => {
    return (<StyledAlertDialogBody ref={ref} {...props}/>);
});
export default AlertDialogBody;
