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;
