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