Function
AvatarImage
({
className,
...props
}: React.ComponentProps<typeof AvatarPrimitive.Image>)
Source from the content-addressed store, hash-verified
| 22 | } |
| 23 | |
| 24 | function AvatarImage({ |
| 25 | className, |
| 26 | ...props |
| 27 | }: React.ComponentProps<typeof AvatarPrimitive.Image>) { |
| 28 | return ( |
| 29 | <AvatarPrimitive.Image |
| 30 | data-slot="avatar-image" |
| 31 | className={cn("aspect-square size-full", className)} |
| 32 | {...props} |
| 33 | /> |
| 34 | ) |
| 35 | } |
| 36 | |
| 37 | function AvatarFallback({ |
| 38 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected