| 3 | import Icon from "../Icon"; |
| 4 | |
| 5 | interface Props { |
| 6 | title: string; |
| 7 | children: ReactNode; |
| 8 | onClose: () => void; |
| 9 | className?: string; |
| 10 | } |
| 11 | |
| 12 | const Modal = (props: Props) => { |
| 13 | const { children, title, onClose, className } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected