UNPKG

@td-design/react-native

Version:

react-native UI组件库

13 lines 339 B
import { FC } from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ColumnProps } from './type'; interface CellProps { data: { [key: string]: string; }; column: ColumnProps; style?: StyleProp<ViewStyle>; } export declare const Cell: FC<CellProps>; export {}; //# sourceMappingURL=Cell.d.ts.map