({ className, ...props }: HTMLAttributes<HTMLDivElement>)
| 48 | DialogContent.displayName = DialogPrimitive.Content.displayName; |
| 49 | |
| 50 | const DialogHeader = ({ className, ...props }: HTMLAttributes<HTMLDivElement>) => ( |
| 51 | <div className={twMerge("flex flex-col space-y-1.5 text-center sm:text-left", className)} {...props} /> |
| 52 | ); |
| 53 | DialogHeader.displayName = "DialogHeader"; |
| 54 | |
| 55 | const DialogFooter = ({ className, ...props }: HTMLAttributes<HTMLDivElement>) => ( |
nothing calls this directly
no outgoing calls
no test coverage detected