UNPKG

@gluestack-ui/modal

Version:

A universal headless modal component for React Native, Next.js & React

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