react-native-elements
Version:
React Native Elements & UI Toolkit
15 lines (14 loc) • 555 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { ListItemProps } from './ListItemBase';
import { RneFunctionComponent } from '../helpers';
export declare type ListItemSwipeableProps = ListItemProps & {
leftContent?: React.ReactNode;
rightContent?: React.ReactNode;
leftStyle?: StyleProp<ViewStyle>;
rightStyle?: StyleProp<ViewStyle>;
leftWidth?: number;
rightWidth?: number;
};
declare const ListItemSwipeable: RneFunctionComponent<ListItemSwipeableProps>;
export default ListItemSwipeable;