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

Function CommitFilePath

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

Source from the content-addressed store, hash-verified

363export type CommitFilePathProps = HTMLAttributes<HTMLSpanElement>;
364
365export const CommitFilePath = ({
366 className,
367 children,
368 ...props
369}: CommitFilePathProps) => (
370 <span className={cn("truncate font-mono text-xs", className)} {...props}>
371 {children}
372 </span>
373);
374
375export type CommitFileChangesProps = HTMLAttributes<HTMLDivElement>;
376

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected