Function
CommitFileChanges
({
className,
children,
...props
}: CommitFileChangesProps)
Source from the content-addressed store, hash-verified
| 375 | export type CommitFileChangesProps = HTMLAttributes<HTMLDivElement>; |
| 376 | |
| 377 | export const CommitFileChanges = ({ |
| 378 | className, |
| 379 | children, |
| 380 | ...props |
| 381 | }: CommitFileChangesProps) => ( |
| 382 | <div |
| 383 | className={cn( |
| 384 | "flex shrink-0 items-center gap-1 font-mono text-xs", |
| 385 | className |
| 386 | )} |
| 387 | {...props} |
| 388 | > |
| 389 | {children} |
| 390 | </div> |
| 391 | ); |
| 392 | |
| 393 | export type CommitFileAdditionsProps = HTMLAttributes<HTMLSpanElement> & { |
| 394 | count: number; |
Callers
nothing calls this directly
Tested by
no test coverage detected