UNPKG

@gluestack-ui/actionsheet

Version:

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

9 lines (8 loc) 288 B
import React, { forwardRef } from 'react'; export function ActionsheetItemText(StyledActionsheetText) { return forwardRef(({ children, ...props }, ref) => { return (<StyledActionsheetText ref={ref} {...props}> {children} </StyledActionsheetText>); }); }