Function
CommitFileInfo
({
className,
children,
...props
}: CommitFileInfoProps)
Source from the content-addressed store, hash-verified
| 303 | export type CommitFileInfoProps = HTMLAttributes<HTMLDivElement>; |
| 304 | |
| 305 | export const CommitFileInfo = ({ |
| 306 | className, |
| 307 | children, |
| 308 | ...props |
| 309 | }: CommitFileInfoProps) => ( |
| 310 | <div className={cn("flex min-w-0 items-center gap-2", className)} {...props}> |
| 311 | {children} |
| 312 | </div> |
| 313 | ); |
| 314 | |
| 315 | const fileStatusStyles = { |
| 316 | added: "text-green-600 dark:text-green-400", |
Callers
nothing calls this directly
Tested by
no test coverage detected