Function
CommitMetadata
({
className,
children,
...props
}: CommitMetadataProps)
Source from the content-addressed store, hash-verified
| 78 | export type CommitMetadataProps = HTMLAttributes<HTMLDivElement>; |
| 79 | |
| 80 | export const CommitMetadata = ({ |
| 81 | className, |
| 82 | children, |
| 83 | ...props |
| 84 | }: CommitMetadataProps) => ( |
| 85 | <div |
| 86 | className={cn( |
| 87 | "flex items-center gap-2 text-muted-foreground text-xs", |
| 88 | className |
| 89 | )} |
| 90 | {...props} |
| 91 | > |
| 92 | {children} |
| 93 | </div> |
| 94 | ); |
| 95 | |
| 96 | export type CommitSeparatorProps = HTMLAttributes<HTMLSpanElement>; |
| 97 | |
Callers
nothing calls this directly
Tested by
no test coverage detected