MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / DialogHeader

Function DialogHeader

web/src/components/ui/dialog.tsx:56–67  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

54DialogContent.displayName = DialogPrimitive.Content.displayName
55
56const DialogHeader = ({
57 className,
58 ...props
59}: React.HTMLAttributes<HTMLDivElement>) => (
60 <div
61 className={cn(
62 'flex flex-col space-y-1.5 text-center sm:text-left',
63 className,
64 )}
65 {...props}
66 />
67)
68DialogHeader.displayName = 'DialogHeader'
69
70const DialogFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected