Components

Avatar(React)

Display user images and badges on Thumbtack.

Version:14.18.2 View sourceChangelogReport issue
Install:yarn add @thumbtack/thumbprint-react
Import:import { UserAvatar, EntityAvatar } from '@thumbtack/thumbprint-react';

Avatar sizes

UserAvataris available in five sizes ranging from xlarge to xsmall.

Avatars without images

Avatars without images can display the the user or entity’s initials instead. The initials are assigned to a color based on the first letter in the initials prop.

AA
BA
CA
DA
EA
HA

Badging

A badge can be added to denote the online status of a user. The badge will be placed on the top right portion of the avatar and use the 400-level green color as positive indicator of their online status.

Online

This badge indicates that a user or entity is online.

Props

UserAvatar

  • imageUrl

    HTTPS URL that points a user’s avatar. The imageURL will take precendence over initials if both are supplied.

    Type
    string
  • initials

    The user’s initials. This should be passed in as a two character string for best results.

    Type
    string
  • fullName

    The user’s full name. This is used as title and alt text.

    Type
    string
  • size

    The set of avatar sizes that we support.

    Type

    This prop can be one of the following 6 types:

    • 'xsmall'
    • 'small'
    • 'medium'
    • 'large'
    • 'xlarge'
    • number
  • isChecked
    deprecated

    Displays a badge of a checkmark next to the Avatar.

    Note: Indicate this information outside of the avatar instead.

    Type
    boolean
  • isOnline

    Displays a badge if the user is online.

    Type
    boolean

EntityAvatar

  • imageUrl

    HTTPS URL that points a user’s avatar. The imageURL will take precendence over initials if both are supplied.

    Type
    string
  • initial

    The entity’s initial. This should be passed in as a one character string.

    Type
    string
  • fullName

    The entity’s full name. This is used as title and alt text.

    Type
    string
  • size

    The set of avatar sizes that we support.

    Type

    This prop can be one of the following 6 types:

    • 'xsmall'
    • 'small'
    • 'medium'
    • 'large'
    • 'xlarge'
    • number
  • isOnline

    Displays a badge if the user is online.

    Type
    boolean