MCPcopy Create free account
hub / github.com/Codehagen/Badget / CodeBlockGroup

Function CodeBlockGroup

src/components/ui/code-block.tsx:74–87  ·  view source on GitHub ↗
({
  children,
  className,
  ...props
}: CodeBlockGroupProps)

Source from the content-addressed store, hash-verified

72export type CodeBlockGroupProps = React.HTMLAttributes<HTMLDivElement>;
73
74function CodeBlockGroup({
75 children,
76 className,
77 ...props
78}: CodeBlockGroupProps) {
79 return (
80 <div
81 className={cn("flex items-center justify-between", className)}
82 {...props}
83 >
84 {children}
85 </div>
86 );
87}
88
89export { CodeBlockGroup, CodeBlockCode, CodeBlock };

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected