MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / ActionConfirmModalProps

Interface ActionConfirmModalProps

src/components/ActionConfirmModal.tsx:4–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import Modal from "./kit/Modal";
3
4export interface ActionConfirmModalProps {
5 title: string;
6 content: string;
7 confirmButtonStyle: string;
8 close: () => void;
9 confirm: () => void;
10}
11
12const ActionConfirmModal = (props: ActionConfirmModalProps) => {
13 const { close, confirm, title, content, confirmButtonStyle } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected