MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / MobileDrawPromptProps

Interface MobileDrawPromptProps

src/components/MobileDrawPrompt.tsx:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected