({
className,
children,
...props
}: CommitSeparatorProps)
| 96 | export type CommitSeparatorProps = HTMLAttributes<HTMLSpanElement>; |
| 97 | |
| 98 | export const CommitSeparator = ({ |
| 99 | className, |
| 100 | children, |
| 101 | ...props |
| 102 | }: CommitSeparatorProps) => ( |
| 103 | <span className={className} {...props}> |
| 104 | {children ?? "•"} |
| 105 | </span> |
| 106 | ); |
| 107 | |
| 108 | export type CommitInfoProps = HTMLAttributes<HTMLDivElement>; |
| 109 |
nothing calls this directly
no outgoing calls
no test coverage detected