Function
CommitInfo
({
className,
children,
...props
}: CommitInfoProps)
Source from the content-addressed store, hash-verified
| 108 | export type CommitInfoProps = HTMLAttributes<HTMLDivElement>; |
| 109 | |
| 110 | export const CommitInfo = ({ |
| 111 | className, |
| 112 | children, |
| 113 | ...props |
| 114 | }: CommitInfoProps) => ( |
| 115 | <div className={cn("flex flex-1 flex-col", className)} {...props}> |
| 116 | {children} |
| 117 | </div> |
| 118 | ); |
| 119 | |
| 120 | export type CommitAuthorProps = HTMLAttributes<HTMLDivElement>; |
| 121 | |
Callers
nothing calls this directly
Tested by
no test coverage detected