react-native-tableview-simple
Version:
React Native component for TableView made with pure CSS
13 lines (12 loc) • 428 B
TypeScript
import React from 'react';
import { ViewStyle } from 'react-native';
export interface SeparatorInterface {
backgroundColor?: ViewStyle['backgroundColor'];
tintColor?: ViewStyle['backgroundColor'];
isHidden?: boolean;
insetLeft?: ViewStyle['marginLeft'];
insetRight?: ViewStyle['marginRight'];
withSafeAreaView?: boolean;
}
declare const Separator: React.FC<SeparatorInterface>;
export default Separator;