UNPKG

@gluestack-ui/alert-dialog

Version:

A universal headless alert-dialog component for React Native, Next.js & React

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