/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { ComponentPropsWithoutRef, forwardRef, memo, RefAttributes, } from 'react'; import { ScrollView as SV } from '@crossed/sheet'; import { ScrollView as RNSV } from 'react-native'; import { CrossedMethods } from '@crossed/styled'; type ScrollViewProps = Omit< ComponentPropsWithoutRef, 'contentContainerStyle' > & { contentContainerStyle?: CrossedMethods; }; export const ScrollView = memo>( forwardRef((props, ref) => { return ( ); }) ); ScrollView.displayName = 'Sheet.ScrollView';