Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 774 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 774 Bytes

Avatar

Avatars are a visual representation of a customer's identity. These may be small thumbnails as part of a menu or more prominent, standalone elements on account and management views.

Initials are dynamically generated from the provided name and always rendered. This allows the initials to serve as a placeholder while the image is loading.

Read more about when and how to use the Avatar component on the internal wiki.

Getting started

Install the package

yarn add @hig/avatar

Import the component and CSS

import Avatar, { sizes } from '@hig/avatar';
import '@hig/avatar/build/index.css';

Basic usage

<Avatar
  name="David Gonzales"
  size={sizes.LARGE_36}
/>