Function
CodeBlockGroup
({
children,
className,
...props
}: CodeBlockGroupProps)
Source from the content-addressed store, hash-verified
| 72 | export type CodeBlockGroupProps = React.HTMLAttributes<HTMLDivElement>; |
| 73 | |
| 74 | function 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 | |
| 89 | export { CodeBlockGroup, CodeBlockCode, CodeBlock }; |
Callers
nothing calls this directly
Tested by
no test coverage detected