MCPcopy Create free account
hub / github.com/arctic-cli/interface / DialogHeader

Function DialogHeader

packages/web/components/ui/dialog.tsx:98–109  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

96}
97
98function DialogHeader({ className, ...props }: React.ComponentProps<"div">) {
99 return (
100 <div
101 className={cn(
102 "flex flex-col gap-2 p-6 in-[[data-slot=dialog-popup]:has([data-slot=dialog-panel])]:pb-3 max-sm:pb-4",
103 className,
104 )}
105 data-slot="dialog-header"
106 {...props}
107 />
108 );
109}
110
111function DialogFooter({
112 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected