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

Function CommitMessage

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

Source from the content-addressed store, hash-verified

66export type CommitMessageProps = HTMLAttributes<HTMLSpanElement>;
67
68export 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
78export type CommitMetadataProps = HTMLAttributes<HTMLDivElement>;
79

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected