Avatar

Avatars are used to represent users or entities in a system.

import { Avatar } from '@cerberus/react'

Usage

The Avatar component is used to represent a user or entity. It can be used to display a user's profile picture, initials, or a generic icon.

xs
sm
md
lg
xl
2x
3x
4x

asChild Prop

You can use the asChild prop to render the Avatar component as a different element. Cerberus will pass all the props onto your child.

Protector Cerberus

Primitives

You can utilize the primitive components to customize the avatar.

ComponentDescription
AvatarRootThe context provider for the Avatar parts
AvatarImageThe img of the avatar
AvatarFallbackThe fallback content to display for the avatar
Cu

API

Props

The Avatar component is an abstraction of the primitives and accepts the following props:

NameDefaultDescription
gradientnoneThe gradient theme to display
sizemdThis size of the avatar.
altThe alt of the avatar.
srcThe src of the avatar.
fallbackThe fallback content to display for the avatar.

The Avatar component also accepts all the props of the AvatarRoot primitive props

Parts

The AvatarParts API is an Object containing the full family of components.

NameDescription
RootThe AvatarRoot component which is the Provider for the family.
ImageThe AvatarImage component which displays the image.
FallbackThe AvatarFallback component which is the content to show when there is no image (or it fails to load).