Function
CommitFilePath
({
className,
children,
...props
}: CommitFilePathProps)
Source from the content-addressed store, hash-verified
| 363 | export type CommitFilePathProps = HTMLAttributes<HTMLSpanElement>; |
| 364 | |
| 365 | export const CommitFilePath = ({ |
| 366 | className, |
| 367 | children, |
| 368 | ...props |
| 369 | }: CommitFilePathProps) => ( |
| 370 | <span className={cn("truncate font-mono text-xs", className)} {...props}> |
| 371 | {children} |
| 372 | </span> |
| 373 | ); |
| 374 | |
| 375 | export type CommitFileChangesProps = HTMLAttributes<HTMLDivElement>; |
| 376 | |
Callers
nothing calls this directly
Tested by
no test coverage detected