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

Function CommitAuthor

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

Source from the content-addressed store, hash-verified

120export type CommitAuthorProps = HTMLAttributes<HTMLDivElement>;
121
122export const CommitAuthor = ({
123 className,
124 children,
125 ...props
126}: CommitAuthorProps) => (
127 <div className={cn("flex items-center", className)} {...props}>
128 {children}
129 </div>
130);
131
132export type CommitAuthorAvatarProps = ComponentProps<typeof Avatar> & {
133 initials: string;

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected