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