react-native-user-avatar
Version:
React Native component for a user avatar with fallback to colored initials
15 lines (14 loc) • 393 B
TypeScript
import { ImageStyle, StyleProp, ViewStyle, TextStyle } from 'react-native';
export declare type UserAvatarPropsType = {
name: string;
src: string;
bgColor: string;
bgColors: string[];
textColor: string;
size: number;
imageStyle: ImageStyle;
style?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
borderRadius: number;
component: Object;
};