| 1 | import { Check, X, Undo2 } from "lucide-react"; |
| 2 | |
| 3 | interface MobileDrawPromptProps { |
| 4 | vertexCount: number; |
| 5 | onSave: () => void; |
| 6 | onCancel: () => void; |
| 7 | onUndo?: () => void; |
| 8 | } |
| 9 | |
| 10 | const MobileDrawPrompt = ({ vertexCount, onSave, onCancel, onUndo }: MobileDrawPromptProps) => { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected