UNPKG

react-native-tableview-simple

Version:

React Native component for TableView made with pure CSS

14 lines (13 loc) 438 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { THEME_APPEARANCE } from './Theme'; export interface TableViewInterface { children?: React.ReactNode; appearance?: 'auto' | 'dark' | 'light' | string; customAppearances?: { [key: string]: THEME_APPEARANCE; }; style?: StyleProp<ViewStyle>; } declare const TableView: React.FC<TableViewInterface>; export default TableView;