14 lines
310 B
TypeScript

import { StyleProp, ViewStyle, TextStyle } from 'react-native';
export interface ProfileInfoRowProps {
icon: string;
label: string;
value: string;
valueColor?: string;
isBadge?: boolean;
badgeBgColor?: string;
onPress?: () => void;
isLast?: boolean;
containerStyle?: StyleProp<ViewStyle>;
}