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 AlertDialogHeader = (StyledAlertDialogHeader) => forwardRef(({ children, ...props }, ref) => { return (<StyledAlertDialogHeader ref={ref} {...props}> {children} </StyledAlertDialogHeader>); }); export default AlertDialogHeader;