/** * Compact Confirm/Cancel pair for destructive row actions (remove folder, * delete album). Swap it in where the hover actions normally sit. */ export function InlineConfirm({ onConfirm, onCancel, }: { onConfirm: () => void onCancel: () => void }) { return (