Function
CommitFileIcon
({
className,
...props
}: CommitFileIconProps)
Source from the content-addressed store, hash-verified
| 351 | export type CommitFileIconProps = ComponentProps<typeof FileIcon>; |
| 352 | |
| 353 | export const CommitFileIcon = ({ |
| 354 | className, |
| 355 | ...props |
| 356 | }: CommitFileIconProps) => ( |
| 357 | <FileIcon |
| 358 | className={cn("size-3.5 shrink-0 text-muted-foreground", className)} |
| 359 | {...props} |
| 360 | /> |
| 361 | ); |
| 362 | |
| 363 | export type CommitFilePathProps = HTMLAttributes<HTMLSpanElement>; |
| 364 | |
Callers
nothing calls this directly
Tested by
no test coverage detected