MCPcopy Create free account
hub / github.com/NanmiCoder/MediaCrawler / DialogHeader

Function DialogHeader

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected