CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface AvatarProps

    Props for the Avatar component.

    <Avatar
    url="https://images.example.com/profiles/taylor.jpg"
    name="Taylor Swift"
    size={36}
    />
    interface AvatarProps {
        name?: string | null;
        size?: number;
        url?: string | null;
    }
    Index
    name?: string | null

    Display name used to compute single-character fallback initial when url is absent.

    size?: number

    Diameter of the circular avatar in density-independent pixels.

    32
    
    url?: string | null

    Remote image URL for the avatar picture.