| 93 | }); |
| 94 | |
| 95 | interface DialogProps { |
| 96 | children: ReactNode | ReactNode[]; |
| 97 | className?: string; |
| 98 | onBackdrop?: (event: React.UIEvent) => void; |
| 99 | onClose?: (event: React.UIEvent) => void; |
| 100 | } |
| 101 | |
| 102 | export const Dialog = memo(({ className, children, onBackdrop, onClose }: DialogProps) => { |
| 103 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected