import { BrandButton } from "#/components/features/settings/brand-button"; import { ModalBackdrop } from "./modal-backdrop"; interface ConfirmationModalProps { text: string; onConfirm: () => void; onCancel: () => void; } export function ConfirmationModal({ text, onConfirm, onCancel, }: ConfirmationModalProps) { return (

{text}

Cancel Confirm
); }