interface Props { open: boolean; title?: string; message: string; confirmLabel?: string; cancelLabel?: string; confirmColor?: string; onConfirm: () => void; onCancel: () => void; } export default function ConfirmModal({ open, title = '확인', message, confirmLabel = '확인', cancelLabel = '취소', confirmColor = 'bg-wing-accent hover:bg-wing-accent/80', onConfirm, onCancel, }: Props) { if (!open) return null; return (
e.stopPropagation()} >

{title}

{message}

); }