Function
CommitMessage
({
className,
children,
...props
}: CommitMessageProps)
Source from the content-addressed store, hash-verified
| 66 | export type CommitMessageProps = HTMLAttributes<HTMLSpanElement>; |
| 67 | |
| 68 | export const CommitMessage = ({ |
| 69 | className, |
| 70 | children, |
| 71 | ...props |
| 72 | }: CommitMessageProps) => ( |
| 73 | <span className={cn("font-medium text-sm", className)} {...props}> |
| 74 | {children} |
| 75 | </span> |
| 76 | ); |
| 77 | |
| 78 | export type CommitMetadataProps = HTMLAttributes<HTMLDivElement>; |
| 79 | |
Callers
nothing calls this directly
Tested by
no test coverage detected