Function
CommitAuthor
({
className,
children,
...props
}: CommitAuthorProps)
Source from the content-addressed store, hash-verified
| 120 | export type CommitAuthorProps = HTMLAttributes<HTMLDivElement>; |
| 121 | |
| 122 | export const CommitAuthor = ({ |
| 123 | className, |
| 124 | children, |
| 125 | ...props |
| 126 | }: CommitAuthorProps) => ( |
| 127 | <div className={cn("flex items-center", className)} {...props}> |
| 128 | {children} |
| 129 | </div> |
| 130 | ); |
| 131 | |
| 132 | export type CommitAuthorAvatarProps = ComponentProps<typeof Avatar> & { |
| 133 | initials: string; |
Callers
nothing calls this directly
Tested by
no test coverage detected