@rneui/base
Version:
Cross Platform React Native UI Toolkit
16 lines (15 loc) • 570 B
TypeScript
import React from 'react';
import { StyleProp, PressableProps, ViewStyle } from 'react-native';
import { RneFunctionComponent } from '../helpers';
export interface ListItemProps extends PressableProps {
containerStyle?: StyleProp<ViewStyle>;
disabledStyle?: StyleProp<ViewStyle>;
topDivider?: boolean;
bottomDivider?: boolean;
pad?: number;
Component?: typeof React.Component;
ViewComponent?: typeof React.Component;
linearGradientProps?: any;
children?: any;
}
export declare const ListItemBase: RneFunctionComponent<ListItemProps>;