MCPcopy Create free account
hub / github.com/MagicCube/agentara / CommitSeparator

Function CommitSeparator

web/src/components/ai-elements/commit.tsx:98–106  ·  view source on GitHub ↗
({
  className,
  children,
  ...props
}: CommitSeparatorProps)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected