Function
CommitAuthorAvatar
({
initials,
className,
...props
}: CommitAuthorAvatarProps)
Source from the content-addressed store, hash-verified
| 134 | }; |
| 135 | |
| 136 | export const CommitAuthorAvatar = ({ |
| 137 | initials, |
| 138 | className, |
| 139 | ...props |
| 140 | }: CommitAuthorAvatarProps) => ( |
| 141 | <Avatar className={cn("size-8", className)} {...props}> |
| 142 | <AvatarFallback className="text-xs">{initials}</AvatarFallback> |
| 143 | </Avatar> |
| 144 | ); |
| 145 | |
| 146 | export type CommitTimestampProps = HTMLAttributes<HTMLTimeElement> & { |
| 147 | date: Date; |
Callers
nothing calls this directly
Tested by
no test coverage detected