UNPKG

@gluestack-ui/actionsheet

Version:

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

7 lines (6 loc) 260 B
import React, { forwardRef } from 'react'; export const ActionsheetIcon = (StyledActionsheetIcon) => forwardRef(({ children, ...props }, ref) => { return (<StyledActionsheetIcon {...props} ref={ref}> {children} </StyledActionsheetIcon>); });