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

Function CommitMetadata

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

Source from the content-addressed store, hash-verified

78export type CommitMetadataProps = HTMLAttributes<HTMLDivElement>;
79
80export 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
96export type CommitSeparatorProps = HTMLAttributes<HTMLSpanElement>;
97

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected