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

Function CommitInfo

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

Source from the content-addressed store, hash-verified

108export type CommitInfoProps = HTMLAttributes<HTMLDivElement>;
109
110export const CommitInfo = ({
111 className,
112 children,
113 ...props
114}: CommitInfoProps) => (
115 <div className={cn("flex flex-1 flex-col", className)} {...props}>
116 {children}
117 </div>
118);
119
120export type CommitAuthorProps = HTMLAttributes<HTMLDivElement>;
121

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected