UNPKG

react95-native

Version:

Refreshed Windows 95 style UI components for your React Native app

10 lines (9 loc) 450 B
import React from 'react'; import { View, ScrollView as RNScrollView, ViewStyle, StyleProp } from 'react-native'; declare type ScrollViewProps = React.ComponentProps<typeof View> & { children: React.ReactNode; scrollViewProps?: React.ComponentProps<typeof RNScrollView>; style?: StyleProp<ViewStyle>; }; declare const ScrollView: ({ children, scrollViewProps, style, ...rest }: ScrollViewProps) => JSX.Element; export default ScrollView;