Auxx.ai

<Avatar />

Display user or entity avatars in your Auxx app.

An avatar component for displaying user profile images with fallback initials.

import { Avatar } from '@auxx/sdk/client'

<Avatar src="https://example.com/photo.jpg" alt="Jane Doe" />
<Avatar fallback="JD" size="large" />
<Avatar src={user.avatar} alt={user.name} size="small" />

Props

PropTypeDefaultDescription
srcstring?Image URL
altstring?Alt text for the image
size'small' | 'medium' | 'large''medium'Avatar size
fallbackstring?Initials shown when no image is available

On this page