MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / AlertDialogFooter

Function AlertDialogFooter

components/ui/alert-dialog.tsx:80–94  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

78}
79
80function AlertDialogFooter({
81 className,
82 ...props
83}: React.ComponentProps<"div">) {
84 return (
85 <div
86 data-slot="alert-dialog-footer"
87 className={cn(
88 "flex flex-col-reverse gap-2 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",
89 className
90 )}
91 {...props}
92 />
93 );
94}
95
96function AlertDialogMedia({
97 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected