| 7 | type Size = "sm" | "md" | "lg" | "xl" | "fit"; |
| 8 | |
| 9 | interface ModalProps { |
| 10 | isOpen: boolean; |
| 11 | closeModal: () => void; |
| 12 | children: ReactNode; |
| 13 | size?: Size; |
| 14 | className?: string; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * |
nothing calls this directly
no outgoing calls
no test coverage detected