@gluestack-ui/actionsheet
Version:
A universal headless actionsheet component for React Native, Next.js & React
9 lines (8 loc) • 336 B
JSX
import React, { forwardRef } from 'react';
export function ActionsheetSectionHeaderText(StyledActionsheetSectionHeaderText) {
return forwardRef(({ children, ...props }, ref) => {
return (<StyledActionsheetSectionHeaderText ref={ref} {...props}>
{children}
</StyledActionsheetSectionHeaderText>);
});
}