Avatar
A graphical representation of the user, often used in profile sections.
Anatomy
To set up the avatar correctly, you'll need to understand its anatomy and how we name its parts.
Each part includes a
data-partattribute to help identify them in the DOM.
Examples
Learn how to use the Avatar component in your project. Let's take a look at the most basic example:
Example not foundExample not foundExample not foundExample not foundHandling Events
Use onStatusChange to listen for loading state changes.
Example not foundExample not foundExample not foundExample not foundRoot Provider
Use the useAvatar hook to create the avatar store and pass it to the Avatar.RootProvider component. This allows you
to have maximum control over the avatar programmatically.
Example not foundExample not foundExample not foundExample not foundIf you're using the
Avatar.RootProvidercomponent, you don't need to use theAvatar.Rootcomponent.
Guides
Next.js Image
Here's an example of how to use the Image component from next/image.
import { Avatar, useAvatarContext } from '@ark-ui/react/avatar'
import { getImageProps, type ImageProps } from 'next/image'
const AvatarNextImage = (props: ImageProps) => {
const avatar = useAvatarContext()
const { hidden, ...arkImageProps } = avatar.getImageProps()
const nextImage = getImageProps(props)
return (
<img
{...arkImageProps}
{...nextImage.props}
style={{
...props.style,
// use visibility instead
visibility: hidden ? 'hidden' : 'visible',
}}
/>
)
}
const Demo = () => {
return (
<Avatar.Root>
<Avatar.Fallback>JD</Avatar.Fallback>
<AvatarNextImage src="..." alt="" width={80} height={80} />
</Avatar.Root>
)
}
Refer to this Github Discussion for more information.
API Reference
Props
Root
| Prop | Default | Type |
|---|---|---|
asChild | booleanUse the provided child element as the default rendered element, combining their props and behavior. For more details, read our Composition guide. | |
ids | Partial<{ root: string; image: string; fallback: string }>The ids of the elements in the avatar. Useful for composition. | |
onStatusChange | (details: StatusChangeDetails) => voidFunctional called when the image loading status changes. |
Fallback
| Prop | Default | Type |
|---|---|---|
asChild | booleanUse the provided child element as the default rendered element, combining their props and behavior. For more details, read our Composition guide. |
| Data Attribute | Value |
|---|---|
[data-scope] | avatar |
[data-part] | fallback |
[data-state] | "hidden" | "visible" |
Image
| Prop | Default | Type |
|---|---|---|
asChild | booleanUse the provided child element as the default rendered element, combining their props and behavior. For more details, read our Composition guide. |
| Data Attribute | Value |
|---|---|
[data-scope] | avatar |
[data-part] | image |
[data-state] | "visible" | "hidden" |
RootProvider
| Prop | Default | Type |
|---|---|---|
value | UseAvatarReturn | |
asChild | booleanUse the provided child element as the default rendered element, combining their props and behavior. For more details, read our Composition guide. |
Context
These are the properties available when using Avatar.Context, useAvatarContext hook or useAvatar hook.
API
| Property | Type |
|---|---|
loaded | booleanWhether the image is loaded. |
setSrc | (src: string) => voidFunction to set new src. |
setLoaded | VoidFunctionFunction to set loaded state. |
setError | VoidFunctionFunction to set error state. |