Function
CanvasDialogFooter
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 157 | |
| 158 | // Canvas dialog footer with muted background |
| 159 | const 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 | ) |
| 171 | CanvasDialogFooter.displayName = "CanvasDialogFooter" |
| 172 | |
| 173 | const DialogTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected