MCPcopy
hub / github.com/21st-dev/1code / CanvasDialogFooter

Function CanvasDialogFooter

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

Source from the content-addressed store, hash-verified

157
158// Canvas dialog footer with muted background
159const CanvasDialogFooter = ({
160 className,
161 ...props
162}: React.HTMLAttributes<HTMLDivElement>) => (
163 <div
164 className={cn(
165 "bg-muted p-4 flex justify-end gap-2 border-t border-border rounded-b-xl",
166 className,
167 )}
168 {...props}
169 />
170)
171CanvasDialogFooter.displayName = "CanvasDialogFooter"
172
173const DialogTitle = React.forwardRef<

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected